我想创建一个名为Property的模型实例,使用方法create with Input :: all()作为参数。输入仅包含可填写字段。使用create method laravel时会引发此异常:
alpha.ERROR: exception 'Illuminate\Database\QueryException' with message 'SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`propathai`.`properties`, CONSTRAINT `properties_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE) (SQL: insert into `properties` (`slug`, `updated_at`, `created_at`) values (, 2014-07-30 10:21:42, 2014-07-30 10:21:42))' in /home/ricardo/CHH/propathai/vendor/laravel/framework/src/Illuminate/Database/Connection.php:555
发生此异常是因为插入查询未填充所有输入参数。
{"bedrooms":"4","title":"ricardo","room_type":"apartment","type":"rent","furnished":"fully_furnished","aging":"new","user_id":"3"}
我尝试创建新的Property对象并使用fill()方法,它确实有效。
代码无效
public function store()
{
$input = Input::all();
$input['user_id'] = Auth::user()->id;
$property = Property::create($input);
return Response::json(array('success' => true, 'redirect' => '/dashboard/properties/'.$property->id.'/edit-details'));
}
代码工作
public function store()
{
$input = Input::all();
$input['user_id'] = Auth::user()->id;
$property = new Property;
$property->fill($input);
$property->save();
return Response::json(array('success' => true, 'redirect' => '/dashboard/properties/'.$property->id.'/edit-details'));
}
模型
protected $guarded = array('id','services');
protected $fillable = array('user_id','bedrooms','title','room_type','type','furnished','aging');
如果有人知道它为什么会发生,请告诉我。
感谢。
答案 0 :(得分:0)
你的slu is没有被填满。
SQL: insert into `properties`
(`slug`, `updated_at`, `created_at`) values (, 2014-07-30 10:21:42, 2014-07-30 10:21:42)
可能是其中之一: 1-您的slug在输入表单上具有不同的名称属性。 2-它不在您的可填充数组上。 3-它为空,空或被过滤。 例如:过滤我输入的空输入:
$input = array_filter(Input::all(),'strlen');
顺便说一句,你这样做的方式并不是最好的方式。看一下这个: http://laravel.com/docs/eloquent 点击“一对多”
你的应用会是什么样子? 您的模型用户
public function properties(){
return $this->hasMany('Property');
}
您的模型属性
public function user(){
return $this->belongsTo('User');
}
在您的控制器上:
$user = Auth::user();
$input = Input::all();
$input['user_id'] = $user->id;
$user->properties()->create($input);
这将是一种更加'Laravel'的方式来接近它。
另外,如果你真的想去看看Jeffrey Way的Laracasts。 这是我在网上看过的最好的Laravel4在线资源。