0

我在获取片段时遇到问题。我总是收到 404 错误。

这是模型:

class Site_model extends CI_Model {

    function getRecords()
    {
        $this->db->where('lvlOne', end($this->uri->segment_array()) );
        $query = $this->db->get('mph_products', 8);

        return $query->result();
    }
}

和控制器:

class Site extends CI_Controller {

    function index ()
    {
        $data['records'] = $this->site_model->getRecords();

        $this->load->view('main', $data);
    }
}
4

0 回答 0