Yii中render和renderPartial的区别


Posted in PHP onSeptember 03, 2014

以下由我们在信易网络公司开发项目的时候终结出的一些经验
在进行页面输出渲染的时候。

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 相关文章推荐
动易数据转成dedecms的php程序
Apr 07 PHP
让PHP以ROOT权限执行系统命令的方法
Feb 10 PHP
ThinkPHP自动验证失败的解决方法
Jun 09 PHP
php数组函数序列之array_values() 获取数组元素值的函数与方法
Oct 30 PHP
浅析使用Turck-mmcache编译来加速、优化PHP代码
Jun 20 PHP
PHP捕获Fatal error错误的方法
Jun 11 PHP
php创建桌面快捷方式实现方法
Dec 31 PHP
Twig模板引擎用法入门教程
Jan 20 PHP
laravel5创建service provider和facade的方法详解
Jul 26 PHP
phpStudy配置多站点多域名方法及遇到的403错误解决方法
Oct 19 PHP
PHP Swoole异步读取、写入文件操作示例
Oct 24 PHP
laravel框架使用阿里云短信发送消息操作示例
Feb 15 PHP
PHP开发框架Laravel数据库操作方法总结
Sep 03 #PHP
Fedora下安装php Redis扩展笔记
Sep 03 #PHP
使用YUI+Ant 实现JS CSS压缩
Sep 02 #PHP
在Ubuntu 14.04上部署 PHP 环境及 WordPress
Sep 02 #PHP
PHP高级编程实例:编写守护进程
Sep 02 #PHP
php输入流php://input使用浅析
Sep 02 #PHP
php获取URL中带#号等特殊符号参数的解决方法
Sep 02 #PHP
You might like
在PHP中使用灵巧的体系结构
2006/10/09 PHP
php5新改动之短标记启用方法
2008/09/11 PHP
利用PHP将部分内容用星号替换
2020/04/21 PHP
php版阿里大于(阿里大鱼)短信发送实例详解
2016/11/30 PHP
Laravel如何使用数据库事务及捕获事务失败后的异常详解
2017/10/23 PHP
服务器安全设置的几个注册表设置
2007/07/28 Javascript
通过隐藏option实现select的联动效果
2009/11/10 Javascript
再说AutoComplete自动补全之实现原理
2011/11/05 Javascript
window.returnValue使用方法示例介绍
2014/07/03 Javascript
阿里巴巴技术文章分享 Javascript继承机制的实现
2016/01/14 Javascript
node.js 动态执行脚本
2016/06/02 Javascript
JS 实现分页打印功能
2018/05/16 Javascript
layui之table checkbox初始化时选中对应选项的方法
2019/09/02 Javascript
Vue3.0数据响应式原理详解
2019/10/09 Javascript
Python中Random和Math模块学习笔记
2015/05/18 Python
python实现JAVA源代码从ANSI到UTF-8的批量转换方法
2015/08/10 Python
Python字符编码与函数的基本使用方法
2017/09/30 Python
python3实现公众号每日定时发送日报和图片
2018/02/24 Python
Django中反向生成models.py的实例讲解
2018/05/30 Python
python中的tcp示例详解
2018/12/09 Python
Python使用pyserial进行串口通信的实例
2019/07/02 Python
django页面跳转问题及注意事项
2019/07/18 Python
Python大数据之网络爬虫的post请求、get请求区别实例分析
2019/11/16 Python
pycharm双击无响应(打不开问题解决办法)
2020/01/10 Python
keras做CNN的训练误差loss的下降操作
2020/06/22 Python
Python的轻量级ORM框架peewee使用教程
2021/02/05 Python
CSS3教程(5):网页背景图片
2009/04/02 HTML / CSS
基于HTML5超酷摄像头(HTML5 webcam)拍照功能实现代码
2012/12/13 HTML / CSS
重新定义牛仔布,100美元以下:Warp + Weft
2018/07/25 全球购物
Java中实现多态的机制
2015/08/09 面试题
后勤部经理岗位职责
2014/02/23 职场文书
2014年信息技术工作总结
2014/12/16 职场文书
求职导师推荐信范文
2015/03/27 职场文书
民事上诉状范文
2015/05/22 职场文书
日本读研:怎样写好一篇日本研究计划书?
2019/07/15 职场文书
MySQL系列之五 视图、存储函数、存储过程、触发器
2021/07/02 MySQL