我在获取细分时遇到问题。我总是收到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);
}
}