yii2中設定不使用佈局的方法:
控制器內成員變數
public $layout = false; //不使用布局 public $layout = "main"; //设置使用的布局文件
控制器成員方法內部
$this->layout = false; //不使用布局 $this->layout = "main"; //设置使用的布局文件
視圖中選擇佈局
$this->context->layout = false; //不使用布局 $this->context->layout = 'main'; //设置使用的布局文件
相關文章教學建議:yii教學
以上是yii2如何設定不使用佈局的詳細內容。更多資訊請關注PHP中文網其他相關文章!