|
楼主 |
发表于 2013-2-25 10:05:18
|
显示全部楼层
本帖最后由 mark35 于 2013-2-25 21:18 编辑
niudongwei 发表于 2013-2-24 00:35
可以的,如果不行可以参看下一个CI的权限模块。
http://github.com/benedmunds/CodeIgniter-Ion-Auth ...
ion_auth是在类库中加载model:
$this->load->model('ion_auth_model');
然后在控制器中使用ion_auth而不是ion_auth_model去调用方法,不知道为何这样,方便管理么- //list the users
- $this->data['users'] = $this->ion_auth->users()->result();
复制代码 这是ion_auth官网的说明
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.
|
|