在 controllers\home.php 中有一个名为的类和一个名为 的home
函数index
。我就在那里$data['users'] = $this->users->table();
而且里面Class Users extends CI_Model
有models\users.php
。
但是 CodeIgniter 说Call to a member function table() on a non-object in C:\Program Files (x86)\EasyPHP-12.1\www\HCAWebApp\application\controllers\home.php
在第 22 行,也就是该$data['users'] = $this->users->table();
行所在的位置。
我的代码有什么问题?我认为它无法找到 users.php。