我一直在尝试使用职位要求更新差点得分。但是我似乎得到一个错误,说:从空值创建默认对象。
代码:
public function handicap(Request $request)
{
$user = Auth::user();
$rules = array(
'handicap' => 'required'
);
$validator = Validator::make(Input::all(), $rules);
// process the login
if ($validator->fails())
{
return response()->json(['msg' => 'Failed to update Handicap score!'], 200);
}
else {
if(Handicap::where('user_id', '=', $user->id)->exists())
{
$handicap = Handicap::find($user->id);
$handicap->user_id = $user->id;
$handicap->handicap = $request->input('handicap');
$handicap->save();
return response()->json(['msg' => 'You have successfully updated your handicap score!'], 200);
}
else
{
$handicap = new Handicap;
$handicap->user_id = $user->id;
$handicap->handicap = $request->input('handicap');
$handicap->save();
return response()->json(['msg' => 'You have added your handicap score successfully!'], 200);
}
}
}
如果在障碍表中不存在用户,则else块代码将运行并为用户创建障碍得分,否则if块需要执行并更新得分。我尝试了许多替代方法,但似乎没有使它起作用。不知道我在做什么错。
我使用return检查了$ user,$ handicap变量。这些变量具有我需要添加到表中的信息。它只是它不更新。
最佳答案
您的问题可能来自于Handicap::find($user->id)
行。显然它为null,因为即使您的if语句返回true
,也找不到这种模型。
在if
语句中,您具有where('user_id' , '=', $user->id)
,但是您正在使用Handicap::find($user->id)
,它基本上是Handicap::where('id', '=', $user->id)->first()
。
尝试将其更改为:$handicap = Handicap::where('users_id', '=', $user->id)->first();
关于php - 使用api调用更新laravel中的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37139200/