我正在使用 yii2 并安装了两个扩展: mpdf 和 yii2-barcode-generator-8-types。它们都已正确安装和配置并且运行良好。但我不能做的是将条形码加载到 pdf 中。
这是我的代码:控制器:
public function actionPdf()
{
$pdf = Yii::$app->pdf;
$pdf->content = $this->renderPartial('_pdf');
echo $this->renderPartial('_pdf');exit;
return $pdf->render();
}
看法 :
<div id="showBarcode"></div>
<?php
use barcode\barcode\BarcodeGenerator as BarcodeGenerator;
$optionsArray = array(
'elementId'=> 'showBarcode',
'value'=> '12345678',
'type'=>'code128',
);
echo BarcodeGenerator::widget($optionsArray);
?>
但是如果我尝试删除 actionPdf() 中的所有代码并只写
return $this->render("_pdf");
它显示如下:
请帮忙!!!