php 框架 yii control 中使用佈局

心鑫發表於2015-10-14

使用views/layout/下的佈局

class CountryController extends Controller
{
//    public $layout = false; //不使用佈局
//public $layout boolean或者string型別
$this->renderPartial(['view', 'id' => $model->code]);
//該方法不使用佈局
$this->redirect(['view', 'id' => $model->code])
//該方法使用佈局預設main 通過$layout更改

相關文章