yii2 renderPartial
在 views/news/_copyright.php 中插入以下代码:
<div> This is text about copyright data for news items </div>
然后在同级目录中的itemsList.php中输入
<?php echo $this->context->renderPartial('_copyright'); ?>
这样,就能在itemsList.php中引入_copyright.php的内容了。
在 views/news/_copyright.php 中插入以下代码:
<div> This is text about copyright data for news items </div>
然后在同级目录中的itemsList.php中输入
<?php echo $this->context->renderPartial('_copyright'); ?>
这样,就能在itemsList.php中引入_copyright.php的内容了。