Wicket:如何创建动态 url(例如图像)
我只是想知道如何在 apache wicket 中为图像 src 指定动态 url。 我只是想到了类似的事情 new StaticResourceReference("图像/按钮/" + 文件名+ ".gif") 但我找不到这样的课程或方法。似乎有一些丑陋的解决方法,例如此处提到的解决方法。
我真的无法想象像 wicket 这样的流行框架没有对动态相对/绝对 url 的简单支持(还要考虑外部资源/url ..)
我错过了什么吗? 谢谢你!
I am just wondering how I can specify a dynamic url for an image src in apache wicket.
I just thought about something like
new StaticResourceReference("images/buttons/" + filename+ ".gif")
but I cannot find such a class or apporoach. There seem to be ugly workarounds, like the ones mentioned here.
I really can't imagine that a popular framework like wicket doesn't have an easy support for dynamic relative/absolute urls (also think about external ressources/urls..)
Did I missed something?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想要一个动态文件名,请尝试以下内容:
html:
支持您的 html 页面的代码:
If you just want a dynamic filename, try something like this:
html:
code to support your html page:
本文档描述了两种可能性在检票口执行此操作:
我对这些方法并不是 100% 满意,但它似乎有效。
This document describes two possiblities how to do it in wicket:
I am not 100% happy with the approaches, but it seems to work.