Laravel 5:仅在所有值都存在的情况下插入

时间:2015-08-19 18:35:13

标签: mysql laravel

我正在向我的桌子发布一些数据。

由于我的帖子数据非常大,有没有办法检查是否所有值都已过帐?然后才将其插入数据库。

或者也许尝试插入它,让数据库处理它?<​​/ p>

提前谢谢。

1 个答案:

答案 0 :(得分:1)

您可以使用require属性验证请求 示例

class CreateNotebookRequest extends Request
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'modelName' => 'required',
....

Read more about request validation