CMS变得简单,Ctlmodulemaker如何获取图片的url
您好,我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在新闻模板中,它调用
您还可以使用 < 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.