控制器中的 Grails 资源路径
假设我正在将图像 URL 列表从服务器传递到前端。
images/
image1.jpg
image2.jpg
image3.jpg
现在我只是列出文件名,但我需要引用绝对路径(/application/images/image1.jpg
)。基本上相当于 ${resource}
服务器端。
Say I'm passing a list of image urls from the server to the frontend.
images/
image1.jpg
image2.jpg
image3.jpg
Now I'm just listing the file names, but I need to reference the absolute path (/application/images/image1.jpg
). Basically the equivalent of ${resource}
server side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在控制器中调用此代码:
标记“绝对”可能会被跳过。
You can call this code in your controller:
Flag 'absolute' may be skipped.
用于从控制器读取文件(cvs,xml,img,...)我使用:
问候
汤姆
for reading file (cvs, xml, img ,...) from controller I use:
Regards
Tom
您可以从控制器调用标签 - 请参阅 http://grails.org/doc/latest/guide/6.%20The%20Web%20Layer.html#6.2.2.6%20Tags%20as%20Method%20Calls
You can call tags from controllers - see http://grails.org/doc/latest/guide/6.%20The%20Web%20Layer.html#6.2.2.6%20Tags%20as%20Method%20Calls