尝试将信息添加到空profile
并重定向回来。
$user = User::whereUsername($username)->firstOrFail(); // Selects correct user
$input = Input::all(); // a dd($input) at this point confirms input present
$this->profileForm->validate($input); // Passes
$user->profile->fill($input)->save();
return Redirect::route('profile.edit', $user->username);
如果$user->profile
为null
,则会出现错误:Call to a member function fill() on a non-object
。我尝试用以下方法解决这个问题:
$user = User::whereUsername($username)->firstOrFail(); // Selects correct user
$input = Input::all(); // a dd($input) at this point confirms input present
$this->profileForm->validate($input); // Passes
if ($user->profile == null)
{
$user->profile = new Profile;
}
$user->profile->fill($input)->save();
return Redirect::route('profile.edit', $user->username);
但是在这种情况下,它会被重定向而不添加配置文件详细信息(此时$user->profile
仍为null
)。
如果$ user->个人资料已有信息,则不会出现此问题且代码正常。
答案 0 :(得分:1)
你可以这样做:
if (count($user->profile))
{
$user->profile->fill($input)->save();
}
else
{
$profile = Profile::create($input);
$user->profile()->save($profile);
}