用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2545|回复: 2
收起左侧

[已解决] View视层和Controllers都按照Demo写,怎么会出问题?

[复制链接]
发表于 2012-5-12 14:35:12 | 显示全部楼层 |阅读模式
本帖最后由 貝殼 于 2012-5-12 14:38 编辑

代码:
application\controllers\home.php
PHP复制代码
 
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
 
class Home extends CI_Controller {
 
        /**
         * Index Page for this controller.
         *
         * Maps to the following URL
         *                 http://example.com/index.php/welcome
         *        - or -  
         *                 http://example.com/index.php/welcome/index
         *        - or -
         * Since this controller is set as the default controller in
         * config/routes.php, it's displayed at http://example.com/
         *
         * So any other public methods not prefixed with an underscore will
         * map to /index.php/welcome/<method_name>
         * @see http://codeigniter.com/user_guide/general/urls.html
         */

        public function index()
        {
                $this->load->view('view_hellworld');
        }
}
?>
 
复制代码

application\views\view_helloworld.php
HTML复制代码
 
<html>
<body>
<title>我的第一個CI框架!</title>
<h1>Hello World!</h1>
</body>
</html>
 
复制代码

出错讯息:l

  1. An Error Was Encountered

  2. Unable to load the requested file: view_hellworld.php
复制代码

RT,求助ING
发表于 2012-5-12 15:02:46 | 显示全部楼层
加上
PHP复制代码
function __construct(){
parent::__construct();}
复制代码

点评

已经找到出错点了,基础错误,不适这个哦  发表于 2012-5-12 15:06
发表于 2012-5-12 15:15:24 | 显示全部楼层
see-sea 发表于 2012-5-12 15:02
加上

哦好的

本版积分规则