1. 程式人生 > >yii 去掉公共頭部head 和尾部

yii 去掉公共頭部head 和尾部

view 層設定

註冊引入靜態檔案:
use app\assets\AppAsset;
AppAsset::register($this); // $this 代表檢視物件

<?php $this->beginPage() ?> <?php $this->beginBody() ?> <?php $this->endBody() ?> <?php $this->endPage() ?>

controller設定 方法1 區域性渲染

action () {
return $this->renderPartial(‘index’,$data)
}

controller設定 方法2 全域性渲染

action (){
$this -> layout = false;
return $this->render(‘index’,$data)
}