2

詳細ビューで画像を表示できますが、これは Yiiトピックで画像を表示できません。imgタグにwidthとaltタグをつけたいです。出来ますか?

私は次のように書きました。

    $this->widget('zii.widgets.CDetailView', array(
    'data'=>$model,
    'htmlOptions'=>array('class'=>'table table-striped responsive-table'),
    'attributes'=>array(
        'id',
        'code',
        'name',
        'description',
        array(
            'type'=>'raw',
            'width'=>'200',
            'alt'=>'hi images',
            'value'=> CHtml::image(Yii::app()->request->baseUrl.'/images/products/'.$model->image),
        ),
        'price',
    ),
));
4

1 に答える 1

2

here で説明されているように、あらゆる種類の html オプションを追加できます。

public static string image(string $src, string $alt='', array $htmlOptions =array ( ))

だからそれは次のようになります

CHtml::image(
    Yii::app()->request->baseUrl . '/images/products/' . $model->image ,
    'some thing here' , array(
    'style' => 'width = 200px; height: 100px',
));
于 2013-10-30T12:03:24.910 に答える