Codeigniter如何从包含多个文件的子文件夹加载视图文件



我是代码点火器的新手,无法理解为什么视图没有从子文件夹加载

我编写简单的控制器并查看文件

控制器位置应用程序\控制器\测试.php

<?php
class Test extends CI_Controller{
public function index()
{
$data = array(
'name'  => 'ivan'
);
$this->load->view('test/new', $this->data);
}
}

查看位置应用程序\views\test\new.php

<div class="container">
<h1>Test</h1>
</div>

当我尝试访问url时http://localhost/test/newim获取错误

404 Page Not Found
The page you requested was not found.

因为您在索引函数中,所以如果您想运行localhost/test/new ,只需创建另一个名为new的函数

请运行此url"http://localhost/test/",因为您的控制器文件索引方法正在使用.

相关内容

  • 没有找到相关文章

最新更新