2 回答

TA貢獻(xiàn)1850條經(jīng)驗(yàn) 獲得超11個(gè)贊
render 和renderpartial之間最大的區(qū)別就是:一個(gè)是渲染模板,一個(gè)不渲染模板。
其中render 輸出父模板的內(nèi)容,將渲染的內(nèi)容,嵌入父模板。
renderPartial 則不輸出父模板的內(nèi)容。只對(duì)本次渲染的局部內(nèi)容,進(jìn)行輸出。
render函數(shù)的說明如下:
public function render($view,$data=null,$return=false)
{
if($this->beforeRender($view))
{
$output=$this->renderPartial($view,$data,true);//渲染子模板
if(($layoutFile=$this->getLayoutFile($this->layout))!==false)
//將子模版渲染的內(nèi)容放到content變量中去渲染父模板,在父模板中輸出$content
$output=$this->renderFile($layoutFile,array('content'=>$output),true);
$this->afterRender($view,$output);
$output=$this->processOutput($output);
if($return)
return $output;
else
echo $output;
}
}

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊
可以,N各都可以.
$model1 = new Model1();
$model2 = new Model2();
$model3 = new Model3();
$this->render('view',array(
'model1' => $model1,
'model2' => $model2,
'model3' => $model3,
));
- 2 回答
- 0 關(guān)注
- 419 瀏覽
添加回答
舉報(bào)