Kohana 3 验证时抛出致命错误

发布于 2024-11-09 06:17:16 字数 914 浏览 0 评论 0原文

尝试按照维基上的示例进行操作: extending model Auth 用户类,当它进行验证时我遇到了致命错误。

ErrorException [ Fatal Error ]: Class 'Validate' not found

有什么想法吗?这是失败的代码片段:

class Model_User extends Model_Auth_User
  {
    public function validate_create(& $array) 
    {
        // Initialise the validation library and setup some rules       
        $array = Validate::factory($array)
                        ->rules('password', $this->_rules['password'])
                        ->rules('username', $this->_rules['username'])
                        ->rules('email', $this->_rules['email'])
                        ->rules('password_confirm', $this->_rules['password_confirm'])
                        ->filter('username', 'trim')

Trying to follow the example on the wiki here: extending model Auth user class, and I am hitting a fatal error when it goes to validate.

ErrorException [ Fatal Error ]: Class 'Validate' not found

Any ideas? Here's the piece of code it fails on:

class Model_User extends Model_Auth_User
  {
    public function validate_create(& $array) 
    {
        // Initialise the validation library and setup some rules       
        $array = Validate::factory($array)
                        ->rules('password', $this->_rules['password'])
                        ->rules('username', $this->_rules['username'])
                        ->rules('email', $this->_rules['email'])
                        ->rules('password_confirm', $this->_rules['password_confirm'])
                        ->filter('username', 'trim')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆蝶 2024-11-16 06:17:16

使用3.1? Validate 现在是 Validation 并且过滤器已被删除。

查看http://kohanaframework.org/3.1/guide/kohana/upgradinghttp://forum.kohanaframework.org/discussion/comment/57374

Using 3.1? Validate is now Validation and filters have been removed.

Check out http://kohanaframework.org/3.1/guide/kohana/upgrading and http://forum.kohanaframework.org/discussion/comment/57374.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文