0

I get the error

Fatal error: Call to a member function retrieve_products() on a non-object

The controller is:

<?php   
class Cart extends CI_Controller { // Our Cart class extends the Controller class  

   public function _construct()  
   {  
       parent::_construct(); // We define the the Controller class is the parent.  
       $this->load->model('Cart_model'); // Load our cart model for our entire class  
   }

   function index()  
   {  
      $data['products'] = $this->cart_model->retrieve_products(); // Retrieve an array with all products  
   }
}

The model is:

<?php   
class Cart_model extends CI_Model {

    function retrieve_products(){  
        $query = $this->db->get('products'); // Select the table products  
        return $query->result_array(); // Return the results in a array.
    }             
}
4

3 回答 3

1

我想说你的电话

$data['products'] = $this->cart_model->retrieve_products();

应该:

$data['products'] = $this->Cart_model->retrieve_products();

即:cart_model 中的大写“C”

于 2012-07-03T21:10:26.050 回答
1

也许我们使用的是不同的版本(我有 1.7.2),但是要声明一个模型,CI_并没有出现。我的工作代码相当于:

class Cart_model extends Model

此外,该类应大写:

$this->Cart_model->retrieve_products();

(代替)

$this->cart_model->retrieve_products();
于 2012-07-03T19:45:35.750 回答
0

我认为这是您的拼写错误,您拼写了构造函数,_construct而不是__construct这就是为什么 codeigniter 将其视为函数而不是类构造函数,并且模型加载仅限于该函数。

于 2012-07-06T08:05:18.437 回答