Yii2图像在搜索表单

时间:2016-10-03 11:32:53

标签: image search checkbox yii2 active-form

在我的yii2项目中,我想获取我的图像的复选框,以便按图像搜索。每当用户选中复选框并提交按钮时,它应仅显示那些已检查图像的内容。

我的复选框列表

  <?php $img = ArrayHelper::map(app\models\GhsPictogram::find()->all(), 'pictogram_id', 'pictogram_filepath') ?>

  <?= $form->field($model, 'ghsPictogram',['template'=>'<div class="ghs-pict"> {label}{input} </div>'])->checkboxList($model->imageList($img)) ?>

我模型中的我的imageList方法

   public function imageList($filenames) {
        $imageList = [];
        foreach ($filenames as $key => $value) {
            $imageList[$key] = Html::img(
                            Yii::$app->request->baseUrl . 'web' . $value,
                            '', array("style"=>"width: 50px")
            );
        }//foreach $filenames
        return $imageList;  
     }

但在我的表单中,它不显示图像。它改为显示图像src。

我附上了我的输出: click here

帮我查找如何在搜索表单字段中显示图像。谢谢

1 个答案:

答案 0 :(得分:1)

复选框列表有一个名为encode的选项,默认为true,它编码(如它所说)传递给它的html。

要解决此问题,只需将'encode' => true添加到checkboxList选项属性,如下所示:

<?= $form->field($model, 'ghsPictogram',['template'=>'<div class="ghs-pict"> {label}{input} </div>'])->checkboxList($model->imageList($img), [
    'encode' => false
]) ?>