0

在尝试从 codeigniter 帮助文件访问用户类对象时,它的抛出错误如 Class 'User' not found. 我的代码类似于 $u = new User(); $u->get(); 我可以在库文件中使用它,但不能在帮助文件中使用。有人可以帮助我。

4

1 回答 1

1

为了在助手中使用模型,您必须:

// Get a reference to the controller object
$CI = get_instance();

// You may need to load the model if it hasn't been pre-loaded
$CI->load->model('User');

// Call a function of the model
$CI->User->get();

希望它会有所帮助!

于 2013-04-02T06:40:18.607 回答