0

我想扩展表单验证类以支持数组表单元素,如此处针对 L4 中的 L3所描述的。

首先,我在我的app/config/app.php

'Validator'       => 'app\lib\Support\Facades\Validator',

然后,我将这些代码保存为 app/lib/Support/Facades/Validator.php

<?php namespace app\lib\Support\Facades;


class Validator extends \Illuminate\Support\Facades\Validator {

    public function __call($method, $parameters) {

      if (substr($method, -6) === '_array') {

          $method = substr($method, 0, -6);
          $values = $parameters[1];
          $success = true;
          foreach ($values as $value) {
              $parameters[1] = $value;


              $rule = snake_case(substr($method, 8));

                if (isset($this->extensions[$rule]))
                {
                    $success &= $this->callExtension($rule, $parameters);
                }

                throw new \BadMethodCallException("Method [$method] does not exist.");
          }
          return $success;
      } else {
          return parent::__call($method, $parameters);
      }

    }

    protected function getMessage($attribute, $rule) {

        if (substr($rule, -6) === '_array') {
          $rule = substr($rule, 0, -6);
        }

        return parent::getMessage($attribute, $rule);
    }

}

然后我确保我composer.json的文件夹包含自动加载:

"autoload": {
    "classmap": [
        "app/commands",
        "app/controllers",
        "app/models",
        "app/database/migrations",
        "app/database/seeds",
        "app/tests/TestCase.php",

        "app/lib",
        "app/lib/Support",
        "app/lib/Support/Facades"
    ]
},

然后,我跑来php composer.phar dump-autoload生成自动加载类。

问题是,这似乎不起作用。我什至尝试将自定义验证方法添加到我生成的文件中,如下所示:

protected function validateTest($attribute, $value) {
    return $value=='test';
}

它说:Method [validateTest] does not exist.。我改了protectedto public,还是一样。

get_class(Validator::getFacadeRoot())给了我\Illuminate\Validation\Factory,但是当我扩展我写给它的类时,我得到了这个错误:Non-static method Illuminate\Validation\Factory::make() should not be called statically

注意:是的,我没有像 L4 方式那样扩展规则,因为我不想添加新规则,但我想更改方法__call()的和getMessage()行为。

我错过了什么,我怎样才能做到这一点?

4

1 回答 1

0

看来我搜索的不够多。正如评论中所建议的那样,我只是将这个答案中共享的代码添加到我的app/routes.php没有创建新文件或更改别名的情况下,它完美地工作!

这是我为解决方案提供的验证规则:

$rules = array(
    'items'     => 'required|min:1|integerOrArray'
);
于 2013-09-19T12:25:24.117 回答