我有這個錯誤,並且沒有檢查到的搜索結果與我的問題類似。Laravel 5.4字段沒有默認值
我有類交易,用戶的應用程序,並匹配
協約有很多比賽。 用戶有很多匹配項。 用戶有很多交易。
我試圖用
$deal->matches()->create(['user_id'=>$id]);
這是我的比賽類,我已經定義了所有需要的關係
class Match extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $guarded = [];
public $timestamps = false;
public $expired_on = "";
public static function boot()
{
parent::boot();
static::creating(function ($model) {
$model->matched_on = $model->freshTimestamp();
});
}
public function __construct(){
$d = (new \DateTime($this->matched_on))->modify('+1 day');
$this->expired_on = $d->format('Y-m-d H:i:s');
}
/**
* Get the user that owns the match.
*/
public function user()
{
return $this->belongsTo('App\User');
}
/**
* Get the deal that owns the match.
*/
public function deal()
{
return $this->belongsTo('App\Deal');
}
}
我的交易對象來創建一個新的比賽,我不斷收到此錯誤,當我試圖創建一個新的比賽。
QueryException in Connection.php line 647: SQLSTATE[HY000]: General error: 1364 Field 'user_id' doesn't have a default value (SQL: insert into
matches
(deal_id
) values (1))
我有我的看守是一個空陣列,可能是什麼問題?
我沒有得到的是爲什麼匹配如果它是數據透視表有一個模型類https://laravel.com/docs/5.0/eloquent#working-with-pivot-tables – Indra
這通常是當你不喜歡不插入某個不能爲NULL或沒有默認值的字段。所以你的'user_id'不會被插入 – Cr1xus
@ Cr1xus,是的,我的'user_id'沒有被插入,現在我的問題是爲什麼它是這樣,看到我在我的創建方法。 –