摘要: Call to a member function addEagerConstraints() on null public function xxx() { return yyy; } 加上 return 就行了 阅读全文
posted @ 2020-04-25 19:58 养猪至富 阅读(1304) 评论(0) 推荐(1)
摘要: 1、安装guzzle composer require guzzlehttp/guzzle 2、引入 use GuzzleHttp\Client; 3、发起请求 //发起Http请求 并设置超时时间 $client = new Client(['timeout'=>5]); //得到URL地址 $u 阅读全文
posted @ 2020-04-25 19:07 养猪至富 阅读(1079) 评论(0) 推荐(0)
摘要: Numeric value out of range: 1264 Out of range value for column 翻译为,这是数字型的值,你填写的值超过了数据库该字段设置的最大值 解决: 1、修改你填写的表单值,比如数据库限制最大值为100.你就不能填写的超过100 2、改写数据库该字段 阅读全文
posted @ 2020-04-25 17:56 养猪至富 阅读(3546) 评论(0) 推荐(0)
摘要: Call to a member function addEagerConstraints() on null 这是laravel的关联关系出问题 原因:你没有返回关联关系,就调用了关联方法 解决: public function xxx() { return $this->belongsTo(yy 阅读全文
posted @ 2020-04-25 17:50 养猪至富 阅读(1782) 评论(0) 推荐(0)