当前位置:首页 > CMS教程 > 其它CMS > 列表

Yii中render和renderPartial的区别

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-10 16:18:28 浏览: 评论:0 

这篇文章主要介绍了Yii中render和renderPartial的区别,以下由我们在信易网络公司开发项目的时候终结出的一些经验。

以下由我们在信易网络公司开发项目的时候终结出的一些经验。

在进行页面输出渲染的时候。

1.render 输出父模板的内容,将渲染的内容,嵌入父模板。|

2.renderPartial 则不输出父模板的内容。只对本次渲染的局部内容,进行输出。

同时还有个重要的区别:

render 函数内部默认执行processOutput($output)函数, 会将把组件,比如 CTreeView 里面注册到 CClientScript 里面的

需要的脚本进行渲染输出。

而renderPartial() 默认不自动渲染输出客户端脚本,需要进行参数的指定,才会输出:

renderPartial($view,$data=null,$return=false,$processOutput=false)

指定processOutput 为 true 即可。

比如要局部输出 CTreeView ,用renderPartial 进行渲染,如果按照默认processOutput=false 则输出内容,不含有客户端脚本

输出内容则为 正常的 ul 列表。没有树形的折叠效果。 主动设定 processOutput=true 后,CTreeView 所需的,所有客户端脚本就会被正常输出在列表的前面。

下面介绍下要用到的几个相关的函数:

render,renderPartial 不再介绍

processOutput()

  1. <?php 
  2. publicfunction render($view,$data=null,$return=false) 
  3.   if($this->beforeRender($view)) 
  4.   { 
  5.     $output=$this->renderPartial($view,$data,true); 
  6.     if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 
  7.       $output=$this->renderFile($layoutFile,array('content'=>$output),true); 
  8.     $this->afterRender($view,$output); 
  9.     $output=$this->processOutput($output); 
  10.     if($return
  11.       return $output
  12.     else 
  13.       echo $output
  14.   } 
  15. publicfunction renderPartial($view,$data=null,$return=false,$processOutput=false) 
  16.   if(($viewFile=$this->getViewFile($view))!==false) 
  17.   { 
  18.     $output=$this->renderFile($viewFile,$data,true); 
  19.     if($processOutput
  20.       $output=$this->processOutput($output); 
  21.     if($return
  22.       return $output
  23.     else 
  24.       echo $output
  25.   } 
  26.   else 
  27.     thrownewCException(Yii::t('yii','{controller} cannot find the requested view "{view}".'
  28.       array('{controller}'=>get_class($this),'{view}'=>$view))); 
  29. publicfunction processOutput($output
  30.   Yii::app()->getClientScript()->render($output); 
  31.   // if using page caching, we should delay dynamic output replacement 
  32.   if($this->_dynamicOutput!==null&& $this->isCachingStackEmpty()) 
  33.   { 
  34.     $output=$this->processDynamicOutput($output); 
  35.     $this->_dynamicOutput=null; 
  36.   } 
  37.   if($this->_pageStates===null) 
  38.     $this->_pageStates=$this->loadPageStates(); 
  39.   if(!emptyempty($this->_pageStates)) 
  40.     $this->savePageStates($this->_pageStates,$output); 
  41.   return $output

以上在实际操作中还是比较有用的,比如你不想用大组建,可以直接将变量输到模板,也可以将多个变量组成数组输到模版里面去.

Tags: render renderPartial

分享到: