Yii clientScript渲染引发错误

时间:2012-08-24 19:19:10

标签: php yii

我在局部视图中有以下内容:

<?php
Yii::app()->clientScript->registerPackage('nivo-slider');
Yii::app()->clientScript->render();

但是,我收到一条错误,指出Missing argument 1 for CClientScript::render(),

渲染方法需要什么参数?我检查了文档,但找不到任何确定的东西。

1 个答案:

答案 0 :(得分:1)

They seem pretty clear to me。您需要传递一个引用变量,该变量将保存呈现的字符串的值。

// as an example:
$output = NULL;
Yii::app()->clientScript->render($output);
// you can now do something with output!