我一直在阅读这篇文章Creating a login form in CodeIgniter based on Ion Auth library,但我仍然有一个关于如何在离子身份验证中调用方法的问题。
文档说明:
NOTE: Methods available in the model are called through the controller using PHP5 magic. You should never use ion_auth_model->method() in your applications.
然后示例显示:
$this->ion_auth->login($identity, $password, $remember);
如果我在autoload.php中自动加载了Ion_auth库,那么我该如何调用这些方法?
答案 0 :(得分:1)
您应该知道库和模型之间存在差异。文档声明您永远不应该从模型中调用方法。相反,加载库并调用其中的方法。也许你不知何故误读了那条线?