CMS变得简单,Ctlmodulemaker如何获取图片的url

发布于 2024-11-02 04:39:51 字数 646 浏览 4 评论 0原文

您好,我在 CMS 中使用 CTLModuleMaker 制作了一个简单的模块,变得简单,在模板中我调用了这样的必要项目:

{assign var="item" value=$itemlist[0]}
{$item->name->Label()}: {$item->name}<br/>
{$item->image->Label()}: {$item->image}<br/>
{$item->image_text->Label()}: {$item->image_text}<br/>
{$item->image_desc->Label()}: {$item->image_desc}<br/>
{$item->img_thumb->Label()}: {$item->img_thumb}<br/>
{$item->catagory->Label()}: {$item->catagory}<br/>

如您所见,我使用 {$item->image} 调用图像,但是当我尝试做某事时像这样的 {$item->url} 它返回整个页面的 url 我试图获取图像的 url 而不是整个页面。 有什么建议我可以做什么吗?

hi I've made a simple module with CTLModuleMaker in CMS made simple, in the template I call the necessary items like this:

{assign var="item" value=$itemlist[0]}
{$item->name->Label()}: {$item->name}<br/>
{$item->image->Label()}: {$item->image}<br/>
{$item->image_text->Label()}: {$item->image_text}<br/>
{$item->image_desc->Label()}: {$item->image_desc}<br/>
{$item->img_thumb->Label()}: {$item->img_thumb}<br/>
{$item->catagory->Label()}: {$item->catagory}<br/>

as you can see i call an image with {$item->image} but when i try to do something like this {$item->url} it returns the url of the whole page I'm trying to get the url of the image not the whole page.
any suggestions what i can do??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聽兲甴掵 2024-11-09 04:39:51

在新闻模板中,它调用

您还可以使用 < code>{debug} 以在单独的弹出窗口中查看传递给模板的所有变量。当我找不到字段名称时,这是我的出狱卡。

In a news template, it calls

<img src="{$item->file_location}/{$item->image->value}" />

You can also use {debug} to see all the variables being passed to the template in a separate popup window. This is my get out of jail free card when I can't find a field name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文