错误代码
public function write($category,Request $request)
{
$title = UsedCarCategory::find($category)->name;
$id = $request->input('id');
$article = "";
if($id==""){
/*添加文章*/
}else{
$article = UsedCar::find($id);
}
return view('/usedCar/write',["article"=>$article,"title"=>$title,"category"=>$category]);
}
上面的代码,再正常不过了,不知道为啥出现了下面的错误
InvalidArgumentException
Unexpected data found. Unexpected data found. Data missing
从网上查出
1 | You're passing $date = Carbon::createFromDate(null, rand(1,12), rand(1,28)); // object(Carbon\Carbon)( // 'date' => '2017-06-02 10:28:17.000000', // 'timezone_type' => 3, // 'timezone' => 'America/New_York' // ) Your next error, you're missing a second colon after DB: DB::table('utilisateurs')->insert |
我仔细检查我没有这个错误。
后来去数据库看,并不是我的错误,代码并没有错误。
created_at 我竟然设置成了time字段。
然后就报错了,不能查询出时间的原因,应该是timestamp才对。
哎 ,这错误。