【发布时间】:2019-12-16 01:36:13
【问题描述】:
当我加载视图时 user/propertie_key/key_propertie_list 返回错误 404
这是我的控制器
class Key_propertie extends UR_Controller {
public function __construct(){
parent::__construct();
$this->load->model("user/key_propertie_model", "key_propertie_model");
$this->load->library('datatable');
}
public function index(){
$lista = $this->key_propertie_model->getKey();
$dados = array("ci_broker_propertie_key" => $lista);
$dados['view'] = 'user/propertie_key/key_propertie_list';
$this->load->view('layout', $dados);
}
这是在控制台上返回给我的错误。
这是完整的视图路径
【问题讨论】:
标签: php html codeigniter