phalcon: 视图分层渲染,或包含其他页面

一:视图分层显现:

比如:在一个页面中,头部、底部固定不变,只有中间部分随操作变换显示。那么可以将中间部分切出来,剩余部分用作固定框架,放入:app/views/layouts目录中,起名为:base.pthml,中间的部分存入相应的目录中去。

接下来,我们看看base.phtml布局

<html>
<title>分层显示</title>
<body>
<p>分层渲染</p> <?php echo $this->getContent(); ?> </body>
</html>

中间部分的html不作修改,

接下来看代码部分,怎么实现,controller:

public function indexAction()
{
//渲染页面,框架部分
$this->view->setTemplateAfter('common'); $this->view->pick("index/index"); }

  

二:phtml包含其他页面

<?php $this->view->partial("header");?>

  

上一篇:SSH与Webservice整合记录


下一篇:2016年4月1日下午,《java入门123》翻开了第一页,从此走上不归路。新手初来乍到,献上见面礼