我得到的錯誤錯誤調用成員函數
Fatal error: Call to a member function retrieve_products() on a non-object
控制器是:
<?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
}
}
的模型是:
<?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.
}
}
好吧,已經試過,但顯示相同的問題。在某處,我發現當數據庫表(在這種情況下'產品')中沒有條目時,它顯示錯誤,但我確實有一些條目。 –
數據庫庫是否存在並加載? – jco