php – 在laravel中保存表单数据

前端之家收集整理的这篇文章主要介绍了php – 在laravel中保存表单数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现在我有一个包含gender,options和user_id的表单.
我的公共函数存储(Request $request)如下所示:
public function store(Request $request)
{
    $task = new Appointment;
    $task->gender = $request->gender;
    $task->options = $request->options;
    $task->user_id = $request->user_id;
    $task->save();
}

这完全没问题,但这只是3个字段?
最终我希望我的表格大5倍.我的功能将是巨大的.有没有办法用更少的代码保存一切?

我发现了这个:$data = Input :: all();
这将获取所有数据,但我不知道如何将其保存在数据库中.

您可以使用create()方法使用 mass assignment功能
public function store(Request $request)
{
    Appointment::create($request->all());
}

不要忘记在Appointment模型中填充$fillable数组中的所有列:

protected $fillable = ['gender','options','user_id','another_one'];
原文链接:https://www.f2er.com/laravel/135847.html

猜你在找的Laravel相关文章