如何在 Struts 2 OGNL 中将参数传递给方法调用
我想使用属性作为对象方法的参数。
<s:property value="orderProductId" />
返回正确的值(例如 1)
<s:iterator value="%{order.getProductById(1).activations}">
也给了我正确的值。但
<s:iterator value="%{order.getProductById(#orderProductId).activations}">
事实并非如此。不知道为什么 #orderProductId 不能正确解释。
I want to use a property as a param of an object's method.
<s:property value="orderProductId" />
returns correct value (e.g. 1)
<s:iterator value="%{order.getProductById(1).activations}">
gives me correct value too. But
<s:iterator value="%{order.getProductById(#orderProductId).activations}">
doesn't. Not sure why #orderProductId doesn't interpret correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊,%#$在OGNL的快乐……
这行不通?
Ah, the joy of %#$ in OGNL...
This doesn't work ?