2016-08-28 31 views
1

私はyii2アドバンステンプレートを使用しています。これは数日を過ぎてしまい、インストールしたバーコードモジュールを動作させることができません。バーコードを私の関数のview.phpに表示したいが、表示されない。ここで yii2のバーコードが表示されない

は私のview.phpのソースコード

<?= DetailView::widget([ 
    'model' => $model, 
    'attributes' => [ 
     'id', 
     'WeatherStation_Model', 
     'WeatherStation_Name', 
     'WeatherStation_Location', 
     'WeatherStation_Status', 
     'WeatherStation_Gateway', 
     'WeatherStation_Logger', 
     'WeatherStation_Number', 
     [ 
      'attribute' => 'barcode_no', 
      'format' => 'raw', 
      'filter' => BarcodeGenerator::widget([ 
       'elementId' => 'barcode-'.$model->barcode_no, 
       'value' => $model->barcode_no, 
       'type' => 'code128', 
       'rectangular' => true, 
       'settings' => [ 
        'output' => 'canvas', 
        ], 
       ]), 
     ], 
     ], 
]) ?> 

であると私はあなたが形式の画像に変更することができます

Same data being passed, not the barcode image itself

+0

これはどのBarcodeGeneratorウィジェットですか? –

答えて

0

viewコマンドを実行しようとすると、これが結果です:

'format' => 'image', 

結果を確認します。

+0

は試しましたが、バーコードのイメージはまだありません。値をブランクにする代わりに –

関連する問題