视图跳转
$this->view->pick(‘index/pick’);选择视图:
关闭视图
$this->view->disable();
在模板中包含局部模板
<?php
$this->partial('shared/login',array(
'var1'=>'val1',
'var2'=>'val2'
));
?>
跳转方式:
//设置一个内部跳转
$this->response->redirect('posts/index');
// 外部跳转url
$this->response->redirect('http://www.netpc.com.cn/',true);
// 设置跳转 http状态
$this->resopnse->redirect('http://www.netpc.com.cn/',true,301);

