Laravel常见错误

作者: 分类: laravel 时间: 2015-12-06 评论: 暂无评论
1.Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

①没有这个路由或者控制器没有这个方法。
②路由中绑定了对象,根据路径的值去找对象,没有找到这个对象,也是报这个错

2.Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException

当提交表单的方法是POST时候,得提交_token值,当然你也可以选择禁用token,或者只让某个路由post提交时,不用验证_token,比如APP与网站API的交互,淘宝的异步通知。

<input type="hidden" name='_token' value="{{csrf_token();}}">

3.You need to use the $fillable property in your Activation class when you use Mass Assignment.
你使用的插入sql语句需要给Model添加可批量插入字段白名单。

protected $fillable = ['id', 'token'];

4.Relationship method must return an object of type IlluminateDatabaseEloquentRelationsRelation
你可能调用了 $model->user这样的方法,找不到user这个对象或者属性报错。

标签: laravel

订阅本站(RSS)