12

嗨,我创建了一个突变器,只在我的电话号码上存储数字。这是我的个人资料模型中的代码。

public function setPhoneAttribute($phone)
{
    $this->attributes['phone'] = preg_replace("/[^0-9]/","",$phone);
}

这在我创建新记录时有效,但如果我更新记录它不起作用。我的问题是如何在创建和更新时执行 Mutator?

这是我在控制器中更新和创建的方式:

namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Requests\ProfileRequest;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Auth;
use App\Profile;

class ProfileController extends Controller {

    public function create(ProfileRequest $request)
    {
        // Check if the user does not have a profile yet
        if(!Auth::user()->profile()->first()){

            // Save to database
            $saveToDatabase = Auth::user()->profile()->create($request->all()); 

            return $saveToDatabase;
        }
    }

    public function update(Profile $profile, ProfileRequest $request)
    {

        // Save to database
        $saveToDatabase = Auth::user()->profile()->update($request->all());

        return $saveToDatabase;
    }
}
4

2 回答 2

23

这是正在发生的事情:

Auth::user()->profile()->create($request->all())调用create关系上的方法 ( HasOneOrMany)。然后,此方法会创建相关模型的新实例。这很重要,因为很明显,属性修改器仅在通过模型创建记录时使用。

但是,关系对象没有任何update方法。(拥有一个也没有意义......)。所以发生的事情是,当你这样做时Auth::user()->profile()->update($request->all())。调用 get被update代理到查询构建器实例(匹配关系)。这会导致执行以下操作:

UPDATE profiles SET foo = 'bar' WHERE [relationship conditions]

它根本不使用模型。因此,mutator 不起作用。

update相反,您必须在实际相关模型上调用该方法。您可以通过将关系作为属性调用来访问它,如下所示:

$saveToDatabase = Auth::user()->profile->update($request->all());
//                                    ^^
//                               no parentheses

如果Profile模型被正确注入,你实际上也可以使用它:

public function update(Profile $profile, ProfileRequest $request)
{
    // Save to database
    $saveToDatabase = $profile->update($request->all());
    return $saveToDatabase;
}
于 2015-03-27T18:58:18.253 回答
1

使用此代码而不是您的代码

$saveToDatabase = Auth::user()->profile->update($request->all());
于 2015-03-27T18:31:08.383 回答