9

我正在尝试覆盖我的 Post 类的 save() 方法,以便我可以验证一些将保存到记录中的字段:

// User.php
<?php

class Post extends Eloquent
{
    public function save()
    {
        // code before save
        parent::save(); 
        //code after save
    }
}

当我尝试在单元测试中运行此方法时,出现以下错误:

..{"error":{"type":"ErrorException","message":"Declaration of Post::save() should be compatible with that of Illuminate\\Database\\Eloquent\\Model::save()","file":"\/var\/www\/laravel\/app\/models\/Post.php","line":4}}
4

3 回答 3

21

创建您将在另一个自我验证模型中扩展的 Model.php 类

应用程序/模型/Model.php

class Model extends Eloquent {

    /**
     * Error message bag
     * 
     * @var Illuminate\Support\MessageBag
     */
    protected $errors;

    /**
     * Validation rules
     * 
     * @var Array
     */
    protected static $rules = array();

    /**
     * Validator instance
     * 
     * @var Illuminate\Validation\Validators
     */
    protected $validator;

    public function __construct(array $attributes = array(), Validator $validator = null)
    {
        parent::__construct($attributes);

        $this->validator = $validator ?: \App::make('validator');
    }

    /**
     * Listen for save event
     */
    protected static function boot()
    {
        parent::boot();

        static::saving(function($model)
        {
            return $model->validate();
        });
    }

    /**
     * Validates current attributes against rules
     */
    public function validate()
    {
        $v = $this->validator->make($this->attributes, static::$rules);

        if ($v->passes())
        {
            return true;
        }

        $this->setErrors($v->messages());

        return false;
    }

    /**
     * Set error message bag
     * 
     * @var Illuminate\Support\MessageBag
     */
    protected function setErrors($errors)
    {
        $this->errors = $errors;
    }

    /**
     * Retrieve error message bag
     */
    public function getErrors()
    {
        return $this->errors;
    }

    /**
     * Inverse of wasSaved
     */
    public function hasErrors()
    {
        return ! empty($this->errors);
    }

}

然后,调整您的 Post 模型。
此外,您需要为此模型定义验证规则。

应用程序/模型/Post.php

class Post extends Model
{
    // validation rules
    protected static $rules = [
        'name' => 'required'
    ];
}

控制器方法
感谢 Model 类,每次调用save()方法时都会自动验证 Post 模型

public function store()
{
    $post = new Post(Input::all());

    if ($post->save())
    {
        return Redirect::route('posts.index');
    }

    return Redirect::back()->withInput()->withErrors($post->getErrors());
}

这个答案强烈基于 Jeffrey Way 的Laravel 4 模型验证包
这个人的所有功劳!

于 2013-08-13T13:05:42.213 回答
13

如何Model::save()在 Laravel 4.1中覆盖

public function save(array $options = array())
{
   parent::save($options);
}
于 2013-12-20T00:37:14.430 回答
8

如果要覆盖 save() 方法,它必须与 Model 中的 save() 方法相同:

<?php
public function save(array $options = array()) {}

和; 您还可以使用模型事件挂钩 save() 调用:http: //laravel.com/docs/eloquent#model-events

于 2013-08-13T07:10:40.167 回答