Laravel 模型保存或更新时出现尾随数据异常
Laravel Trailing Data Exception when model save or update
我在更新 laravel 5.6 中的模型数据时遇到问题,
很多次后,我发现实际上问题出在 created_at 和 updated_at 上。
我的代码:
$editStuState = StuAtt::where('studentId' , '=' , 1007)->first();
dd($editStuState -> created_at);
和dd($editStuState)
StuAtt {#382 ▼
#table: "stu_attendance"
#connection: "mysql"
#primaryKey: "id"
#keyType: "int"
+incrementing: true
#with: []
#withCount: []
#perPage: 15
+exists: true
+wasRecentlyCreated: false
#attributes: array:7 [▼
"id" => "3"
"studentId" => "1007"
"present" => "7"
"absent" => "2"
"leave" => "6"
"created_at" => "2018-04-19 07:01:19.929554"
"updated_at" => "2018-04-19 02:31:19.000000"
]
#original: array:7 [▼
"id" => "3"
"studentId" => "1007"
"present" => "7"
"absent" => "2"
"leave" => "6"
"created_at" => "2018-04-19 07:01:19.929554"
"updated_at" => "2018-04-19 02:31:19.000000"
]
#changes: []
#casts: []
#dates: []
#dateFormat: null
#appends: []
#dispatchesEvents: []
#observables: []
#relations: []
#touches: []
+timestamps: true
#hidden: []
#visible: []
#fillable: []
#guarded: array:1 [▶]
}
打印created_at
字段时出现的错误:
InvalidArgumentException
Trailing data
哪里出错了,怎么改?
尾随数据是 Carbon 错误,这是因为您可能使用了 PostgreSQL
,而数据库的日期 returns 毫秒。
"created_at" => "2018-04-19 07:01:19.929554"
您可以将以下方法添加到您的(基本)模型中。
// ...
public function getDateFormat()
{
return 'Y-m-d H:i:s.u';
}
}
我在更新 laravel 5.6 中的模型数据时遇到问题, 很多次后,我发现实际上问题出在 created_at 和 updated_at 上。 我的代码:
$editStuState = StuAtt::where('studentId' , '=' , 1007)->first();
dd($editStuState -> created_at);
和dd($editStuState)
StuAtt {#382 ▼
#table: "stu_attendance"
#connection: "mysql"
#primaryKey: "id"
#keyType: "int"
+incrementing: true
#with: []
#withCount: []
#perPage: 15
+exists: true
+wasRecentlyCreated: false
#attributes: array:7 [▼
"id" => "3"
"studentId" => "1007"
"present" => "7"
"absent" => "2"
"leave" => "6"
"created_at" => "2018-04-19 07:01:19.929554"
"updated_at" => "2018-04-19 02:31:19.000000"
]
#original: array:7 [▼
"id" => "3"
"studentId" => "1007"
"present" => "7"
"absent" => "2"
"leave" => "6"
"created_at" => "2018-04-19 07:01:19.929554"
"updated_at" => "2018-04-19 02:31:19.000000"
]
#changes: []
#casts: []
#dates: []
#dateFormat: null
#appends: []
#dispatchesEvents: []
#observables: []
#relations: []
#touches: []
+timestamps: true
#hidden: []
#visible: []
#fillable: []
#guarded: array:1 [▶]
}
打印created_at
字段时出现的错误:
InvalidArgumentException
Trailing data
哪里出错了,怎么改?
尾随数据是 Carbon 错误,这是因为您可能使用了 PostgreSQL
,而数据库的日期 returns 毫秒。
"created_at" => "2018-04-19 07:01:19.929554"
您可以将以下方法添加到您的(基本)模型中。
// ...
public function getDateFormat()
{
return 'Y-m-d H:i:s.u';
}
}