phalcon费尔康框架视图和跳转

视图跳转

$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);
此条目发表在开源代码分类目录,贴了标签。将固定链接加入收藏夹。

发表回复