Struts2中的tiles.xml中是否可以有动态值
是否可以像在 Struts2 中的 struts.xml 中那样在tiles.xml 中传递动态值?我已经使用 ${parameter} 来获取配置文件中的动态值,但它似乎不起作用。有什么想法吗?
Is it possible to pass dynamic values in tiles.xml as we do in struts.xml in Struts2? I have used ${parameter} to get dynamic values in config file but it doesnt seem to work. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将通配符从 struts 操作传递给图块,我使用它为动态项目执行类似的操作,例如每个客户端可能有不同的 CSS 文件。
在你的 struts 操作中,你将有一个tiles结果类型,你可以传递如下值:
然后在你的tiles.xml中,你将“插入”通配符:
在这个特定的例子中,struts操作pageID是项目目录,其中文件位于tiles.xml 中,并作为通配符{1} 放置。 fileID 是与此特定操作或在tiles.xml 中用{2} 表示的用户关联的文件名。您可以使用此设置将动态值传递到图块,以便控制例如页面状态或 JSP 的渲染或像本示例中的自定义 css 和 js 文件。
You can pass wildcards to tiles from your struts actions, I've used this to do similar things for dynamic projects where each client might have a different CSS file for instance.
In your struts action you would have a tiles result type and you can pass the value such as:
And then in your tiles.xml you would "plug in" the wildcards:
In this particular example the struts action pageID is the project directory where the files are located and in the tiles.xml it is placed as wildcard {1}. The fileID is the filename associated with this particular action or user represented in the tiles.xml by {2}. You can use this set up to pass dynamic values to your tiles in order to control for example page states or JSP's to render or like in this example, custom css and js files.