阅读目录
命名空间这里路径写错了就会报这个错误
namespace App\Http\Controllers;
Class App\Http\Controllers\Product\ProductController located in ./app/Http/Controllers/ProductController.php does not comply with psr-4 autoloading standard. Skipping.
Add [userId] to fillable property to allow mass assignment on [App\Models\SignIn]
$signIn = new SignIn();
// 添加用户数据
$signIn_data=[
'userId' => $userId,
'num' => 1,
'signTime' => date('Y-m-d H:i:s', time())
];
$signIn::create($signIn_data);
解决办法:添加可执行的字段。
SQLSTATE[HY000]: General error: 1364 Field ‘id’ doesn’t have a default value
SQLSTATE[HY000]: 一般错误: 1364 字段 ‘id’ 没有默认值