我是CodeIgniter框架的新手,只是在研究框架时想问这个问题。我只想问一下,在添加其他功能之前是否要包含功能public function index(){....}
?还是您不必添加功能并仅加载视图?例如,如果我不创建public function index(){...}
而是仅添加一个函数,则假设public function test_index(){..}
并在其中加载视图。
答案 0 :(得分:0)
我现在明白了这一点。我可以添加public function index(){..}
之外的其他函数,然后仅在其中调用或加载视图。例如:
public function test_index(){
$this->load->view('home_view);
}
,只需在浏览器中查看类和函数即可。
答案 1 :(得分:0)
您可以根据需要添加带有或不带有索引的其他功能