我在 yii2 中有一个图像滑块_carousel.php
。我想在调用main.php
时呈现这个部分形式。actionIndex
我所做的是将呈现的 html 代码保存在变量中并发送到索引,但在 main.php 中无法识别。如何缓存它并在 main.php 中显示,而在 actionIndex 我们有:
$_carousel = $this->renderPartial('_carousel');
return $this->render('index', [
'carousel' => $_carousel
]);
类似于 yii 1.4 中的代码:
$this->beginClip('bannerSlideshow');
echo $this->renderPartial('//layouts/banner');
$this->endClip();