douan7601 2016-01-04 03:15
浏览 57
已采纳

如何在Laravel中更新记录时将表单后期数据加载到模型中

I'm trying to update a record with the post data from a form. Every time I'm manually assigning the values from the form to the model and saving the record.

$model = CondoFacilities::find($id);

$model->facility_title = Input::get('facility_title');
$model->facility_description = Input::get('facility_description');
$model->facility_image = $imageName;

$status = $model->save();

Is there any way to assign the form data to the model and save/update the record in Laravel ? Similar to the one in YII2:

$model = $this->findModel($id);

if ($model->load(Yii::$app->request->post())) {
    $model->save();
}

I'm new to Laravel hope this awesome feature is available in Laravel as well.

Thank you for your help.

  • 写回答

1条回答 默认 最新

  • dongyan1936 2016-01-04 03:32
    关注

    In order to create a model and store it in the database, you can use create method directly on the model like so:

    YourModel::create($request->all());
    

    where $request->all() is the post request of the form with the values that you wish to create and save it in the database.

    Similarly, for updating the model, you need to first find the model:

    $model = YourModel::find($id);
    

    where $id is the unsigend integer of the model that you wish to update.

    $model->update($request->all());
    

    Of course you can also inline the update method like so:

    YourModel::find($id)->update($request->all());
    

    Read more about Eloquent and Requests

    Hope this helps you out. Happy Coding. Cheers.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部