gpt4 book ai didi

Yii2 在 DetailView 中渲染图像

转载 作者:行者123 更新时间:2023-12-03 21:10:00 26 4
gpt4 key购买 nike

我正在尝试在 View 文件中渲染图像。我的代码如下:

<?= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
'name',
//'photo',
[
'attribute'=>'photo',
'value'=>('<img src =' .'uploads/' . $model->photo . ' height="100" width="100"' . '>')
],


[
'attribute' => 'birth_date',
'format' => ['date', 'dd-MM-Y'],
],
'mobile',
],

]) ?>

虽然下面的代码有效:
<?php echo ('<img src =' .'uploads/' . $model->photo .'>'); ?>

谢谢。

最佳答案

尝试这个:

[
'attribute'=>'photo',
'value'=>$model->photo,
'format' => ['image',['width'=>'100','height'=>'100']],
],

关于Yii2 在 DetailView 中渲染图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26896529/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com