在下面的codeigniter代码中,我放置了控制器。但它没有加载控制器。但它显示找不到你请求的页面。请帮助我解决问题。
class User extends CI_Controller {
public function __construct() {
parent::__construct();
$this -> load -> model('country_model');
}
function Register() {
$data['countries'] = $this -> country_model -> get_countries();
$this -> load -> view('test/post_view', $data);
}
}
答案 0 :(得分:0)
class User extends CI_Controller {
public function __construct() {
parent::__construct();
$this->load->model('country_model');
}
public function Register() {
$data['countries'] = $this->country_model->get_countries();
$this->load->view('test/post_view', $data);
}
}
您的网址中index.php背后的参数意味着以下内容.. index.php / user / register =转到控制器用户并激活功能寄存器。