Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我在数据库中有一个列,其中包含为用户上传的图像的 url。
我希望看到对应图像的拇指,但我只能看到图像的名称。
怎么可能这样做?
您应该为此使用部分(如文档中所述- 或此处用于其他解释(向下滚动到“部分编辑”))
在你的generator.yml:
generator.yml
generator: param: config: list: display: [ _image]
然后,在同一模块_image.php的文件夹中创建一个名为的部分,其中包含以下内容:templates
_image.php
templates
<?php echo image_tag($object->getImage()); ?>
您需要更新:
$object
getImage