Yii2 bietet drei Möglichkeiten, das Layout auszuwählen
1. Verwenden Sie den gesamten Controller
public $layout = false; //不使用布局 public $layout = "main"; //设置使用的布局文件
2. Verwenden Sie
$this->layout = false; //不使用布局 $this->layout = "main"; //设置使用的布局文件
$this->context->layout = false; //不使用布局 $this->context->layout = 'main'; //设置使用的布局文件