遇到PHP错误:
Severity: Notice
Message: Undefined property: Mypage::$db
Filename: core/Model.php
Line Number: 51
Fatal error: Call to a member function query() on a non-object in C:\xampp\htdocs\codeigniter\application\models\user_model.php on line 11
答案 0 :(得分:3)
您似乎没有加载数据库库。
修改您的application/config/autoload.php
像,
$autoload['libraries'] = array('database', 'session');
答案 1 :(得分:0)
很可能您收到此错误,因为您尚未加载数据库库。您需要在自动加载中加载数据库,或者在模型中,$db object
引用数据库库。
$this->load->library('database'); //in your model function do this
但是您必须为每个函数重复此操作,或者在您选择的模型的构造函数中执行此操作,但最好的选择是在autoload.php
中加载数据库:
autoload['libraries'] = array('database');