call_user_func_array() 期望参数 1 是一个有效的回调,没有给定 Kohana 3.3.4 的数组


call_user_func_array() expects parameter 1 to be a valid callback, no array or string given Kohana 3.3.4

嘿伙计们,我已经阅读并研究了Kohana ORM和Auth模块。 所以我想在我的网站上实施 AM 管理部分。 我收到上面的错误,我已经用谷歌搜索过,但似乎找不到答案。 我使用的是 Kohana 3.3.4所以 A 创建了一个名为 admin 的控制器:

 <?php defined('SYSPATH') or die('No direct script access!');
class Controller_Admin extends Controller_Dev
{
    public $template = 'login_template';
    public function action_index()
    {
        if (Auth::instance()->logged_in()) {
            $this->redirect->body('admin/dashboard', 302);
        }
        $this->redirect('admin/login');
    }
    //lets login user
    public function action_login()
    {
        $view = new View('admin_login');
        $this->template->title = "Log in";
        if ($_POST) {
            $user = ORM::factory('user');
            $status = $user->login($_POST);
            if ($status) {
                $this->redirect('admin/dashboard', 302);
            }
            else {
                $errors = $_POST->errors('admin/login');
            }
        }
        // Display the login form
        $this->template->content = $view;
    }
    //lets logout user
    public function action_logout()
    {
        Auth::instance()->logout();
        $this->redirect('admin/login', 302);
    }
    //lets register new users
    public function action_register()
    {
        $view = View::factory('admin_register')
            ->set('values', $_POST)
            ->bind('errors', $errors);
        $this->template->title = "Registration Page";
    if ($_POST)
    {
        $user = ORM::factory('User');
            // The ORM::values() method is a shortcut to assign many values at once
        /* $external_values = array(
            // The unhashed password is needed for comparing to the password_confirm field
            'password' => Arr::get($_POST, 'password'),
        // Add all external values
        ) + Arr::get($_POST, '_external', array());
        $extra = Validation::factory($external_values)
            ->rule('confirm_password', 'matches', array(':validation', ':field', 'password')); */
        try
        {
            //$test = $extra; //Arr::get($_POST, 'password');
            //$view->test = $test;
            $data = $this->request->post();
            $user->register($data);
            // Redirect the user to his page
            $this->redirect('admin/login');
        }
        catch (ORM_Validation_Exception $e)
        {
            $errors = $e->errors('models');
        }
    }
    $this->template->content = $view;
    }

我创建了一个名为 user 的模型来帮助我在将新用户帐户保存到数据库之前对其进行验证:

 <?php defined('SYSPATH') or die('No direct access allowed.');
class Model_User extends Model_Auth_User {
    //public $_table_name = 'users';
    protected $_has_many = array(
            'user_tokens'   => array('model' => 'user_token'),
            'roles'         => array('model' => 'role', 'through', 'roles_users'),
            // for facbook, google+, twitter and yahoo indentities
            'user_identity' => array(),
        );
    protected $_ignored_columns = array('confirm_password');
    public function rules()
    {
        return array(
            'username' => array(
                array('not_empty'),
                array('min_length', array(':value', 4)),
                array('max_length', array(':value', 32)),
                array(array($this, 'username_available')),
            ),
            'password' => array(
            'not_empty'  => NULL,
            'min_length' => array(5),
            'max_length' => array(42),
        ),
        'password_confirm' => array(
            'matches'    => array('password'),
        ),
        'email' => array(
            'not_empty'  => NULL,
            'min_length' => array(4),
            'max_length' => array(127),
            'email'      => NULL,
        ),
        );
    }
    public function filters()
    {
        return array(
            'password' => array(
                array(array($this, 'hash_password')),
            ),
        );
    }
    public function username_available($username)
    {
        // There are simpler ways to do this, but I will use ORM for the sake of the example
        //return ORM::factory('Member', array('username' => $username))->loaded();
        // Check if the username already exists in the database
        return ! DB::select(array(DB::expr('COUNT(username)'), 'total'))
            ->from('users')
            ->where('username', '=', $username)
            ->execute()
            ->get('total');
    }
    public function hash_password($password)
    {
        // Do something to hash the password
    }
    public function register($array)
    {
        $this->values($array);
        $this->save();
        // Create a new user record in the database

        // Save the new user id to a cookie
        cookie::set('user', $id);
        return $id;
    }
}

当我访问管理员注册页面时,它无法显示错误,指出:

错误异常 [ 警告 ]:call_user_func_array() 期望参数 1 是有效的回调,没有给出数组或字符串

所以请帮助我,因为我认为我可能错过了一些东西。提前感谢伙计们。我正在使用Kohana 3.3.4

我最近遇到了同样的错误。您需要更改行:

 array(array($this, 'username_available')),

到行(对于用户名):

 array(array($this, 'unique'), array('username', ':value')),

如 https://kohanaframework.org/3.3/guide-api/Model_Auth_User#rules 所述

我希望这对你有所帮助。