表单更新数据库模型记录的关系

时间:2018-10-12 07:47:29

标签: php laravel-5 octobercms

我想知道如何使用前端表单来更新模型的关系。我看了看文件,发现:

  

或者,您也可以使用主键设置关系   在使用HTML表单时非常有用。

// Assign to author with ID of 3
$post->author = 3;

// Assign comments with IDs of 1, 2 and 3
$post->comments = [1, 2, 3];

$post->save();

用于更新关系的后端表单可以正常工作。这是我的代码,也是我将ID用作值的地方,但它似乎并不影响关系字段。帮助将非常感谢!

    $project = new Projects(); 
    $project->name = Input::get('name');
    $project->price = Input::get('price');
    $project->work = Input::get('work');
    $project->client = Input::get('client');
    $project->slug = $slug;
    $project->save();
    Flash::success('Estimate Added!');
    return Redirect::refresh();

这是数据透视表:

public function up()
    {
        Schema::create('brandon_invoice_ip', function($table)
        {
            $table->engine = 'InnoDB';
            $table->integer('invoices_id');
            $table->integer('projects_id');
            $table->primary(['invoices_id','projects_id']);
        });
    }

    public function down()
    {
        Schema::dropIfExists('brandon_invoice_ip');
    }
}

这是模型关系:

public $hasOne = [
        'client' => 'Brandon\Invoice\Models\Clients'
    ];

这是前端形式:根据ID值正确无误。

<div class="uk-margin uk-first-column">
    <label class="uk-form-label" for="client">Client</label>
    <div class="uk-form-controls">
        <select class="uk-select" name="client">
          <option value="1">Brandon</option>
          <option value="2">Sanitary Ostomy System</option>
        </select>
    </div>
</div>

CI variable

2 个答案:

答案 0 :(得分:0)

使用以下方法设置客户端后

$project->client = Input::get('client');

您需要使用以下命令保存更改:

$project->save();

假设您的表格和模型已正确设置,则上面的方法应该起作用。如果没有,则需要发布表的结构以及其余的代码。

答案 1 :(得分:0)

我认为您需要添加EmiratesTo关系而不是hasOne

public $belongsTo = [
    'client' => 'Brandon\Invoice\Models\Clients'
];