我正在尝试使用renderPartial函数和Bootstrap类。
这是我在控制器文件中的功能:
public function actionPrintReport() {
Yii::$app->response->format = 'pdf';
return $this->renderPartial('_myReport', []);
}
这是我呈现的 _myReport 文件:我自己的样式有效,但 Bootstrap 类无效。
<div class="box box-warning">
<div class="box-body">
Text
</div>
</div>
但结果没有显示任何 Bootstrap 类:
我也尝试了 renderAjax但结果相同。