Yii中render和renderPartial的区别

2015-01-24信息快讯网

这篇文章主要介绍了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()

<?php
publicfunction render($view,$data=null,$return=false)
{
  if($this->beforeRender($view))
  {
    $output=$this->renderPartial($view,$data,true);
    if(($layoutFile=$this->getLayoutFile($this->layout))!==false)
      $output=$this->renderFile($layoutFile,array('content'=>$output),true);
    $this->afterRender($view,$output);
    $output=$this->processOutput($output);
    if($return)
      return $output;
    else
      echo $output;
  }
}
publicfunction renderPartial($view,$data=null,$return=false,$processOutput=false)
{
  if(($viewFile=$this->getViewFile($view))!==false)
  {
    $output=$this->renderFile($viewFile,$data,true);
    if($processOutput)
      $output=$this->processOutput($output);
    if($return)
      return $output;
    else
      echo $output;
  }
  else
    thrownewCException(Yii::t('yii','{controller} cannot find the requested view "{view}".',
      array('{controller}'=>get_class($this),'{view}'=>$view)));
}
publicfunction processOutput($output)
{
  Yii::app()->getClientScript()->render($output);
  // if using page caching, we should delay dynamic output replacement
  if($this->_dynamicOutput!==null&& $this->isCachingStackEmpty())
  {
    $output=$this->processDynamicOutput($output);
    $this->_dynamicOutput=null;
  }
  if($this->_pageStates===null)
    $this->_pageStates=$this->loadPageStates();
  if(!empty($this->_pageStates))
    $this->savePageStates($this->_pageStates,$output);
  return $output;
}

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

php实现redis数据库指定库号迁移的方法
ucenter通信原理分析
php计划任务之ignore_user_abort函数实现方法
WampServer下安装多个版本的PHP、mysql、apache图文教程
Zend Guard使用指南及问题处理
PHP和Shell实现检查SAMBA与NFS Server是否存在
php实现utf-8转unicode函数分享
phpQuery让php处理html代码像jQuery一样方便
php中fsockopen用法实例
ioncube_loader_win_5.2.dll的错误解决方法
PHP中使用xmlreader读取xml数据示例
dedecms集成财付通支付接口
VPS中使用LNMP安装WordPress教程
为PHP5.4开启Zend OPCode缓存
PHP中require和include路径问题详解
CentOS6.5 编译安装lnmp环境
Laravel框架数据库CURD操作、连贯操作总结
PHP开发框架Laravel数据库操作方法总结
Fedora下安装php Redis扩展笔记
在Ubuntu 14.04上部署 PHP 环境及 WordPress
重新认识php array_merge函数
浅析PHP中strlen和mb_strlen的区别
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
简单分析ucenter 会员同步登录通信原理
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
php批量删除数据库下指定前缀的表以prefix_为例
ThinkPHP后台首页index使用frameset时的注意事项分析
ThinkPHP中的create方法与自动令牌验证实例教程
destoon出现验证码不显示时的紧急处理方法
destoon供应信息title调用出公司名称的方法
从零开始学YII2框架(二)通过 Composer 安装扩展插件
从零开始学YII2框架(一)通过Composer安装Yii2框架
PHP函数http_build_query使用详解
zend framework框架中url大小写问题解决方法
PHP管理依赖(dependency)关系工具 Composer的自动加载(autoload)
©2014-2024 dbsqp.com