在控制器中使用model对象添加数据
$userModel = new UserModel();
$userModel->username='xiaohua';
$userModel->password='666666';
$data = $userModel->save();
错误信息:
出现以下错误是因为你的数据表中没有 `updated_at` 和 `created_at` 字段
而Eloquent会自动维护数据表中的 `updated_at` 和 `created_at` 字段
解决方法:
一、在数据表中添加 `updated_at` 和 `created_at`字段。
二、在对应的模型文件添加属性:public $timestamps = false;
|
|