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

为什么总提示 The requested view 1 could not be found

[复制链接]
发表于 2010-8-23 16:40:23 | 显示全部楼层 |阅读模式
我的controller:
PHP复制代码
class Controller_Test extends Controller{
       
        //public $template = 'site';
        public function action_index(){
                $view = new View('site');
                $view->render(TRUE);
        }
复制代码


我的view就显示了几个英文字每 ,为什么提示这样的错误呀

PHP复制代码
$this->request->response = $view->render();
复制代码

这样就能显示,到底是怎么回事啊?
发表于 2010-8-26 11:27:54 | 显示全部楼层
在 KO3 中不提倡使用 new 实例化对象,尽量使用 factory。
PHP复制代码
class Controller_Test extends Controller{
       
        //public $template = 'site';
        public function action_index(){
                $this->request->response = View::factory('site');
        }
复制代码

本版积分规则