如何在struts属性字符串中插入java表达式
我有以下内容:
然而,我真正需要做的是从 a 中提取字符串 abc
java 类的静态成员。
我想像
,但这没有用。
这里正确的语法是什么?
I have the following:
<html:select property="myMap(abc)">
What I really need to do, however, is pull the string abc
from a static member of a java class.
I thought something like
<html:select property="myMap(<%=MyClass.FIELD%>)">
, but that didn't work.
What's the correct syntax here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试以下操作:
Try the following: