在 struts2 文本标签中显示对象属性的标签
我想在 Jsp 页面中显示对象的属性。问题是这个属性是我的资源包中标签的名称,我知道的唯一方法是使用
但现在它是一个属性一个对象,我不知道该怎么做。这是我代码的一部分,“brandList”是品牌对象列表,“brandName”字段是标签名称。我想要这样的东西,
<s:iterator value="brandList" status="stat">
<s:text name="<s:property value='brandName'>" />
</s:iterator>
但这行不通。有什么想法吗? 提前致谢。
I want to show a property of an object in my Jsp page. the problem is that this property is the name of a label in my resource bundle and the only way I know is to use <s:text name="labelname">
but now that it's a property of an object, I don't know how to do this. This is a part of my code, 'brandList' is a list of brand objects and 'brandName' field is name of label. I want something like this
<s:iterator value="brandList" status="stat">
<s:text name="<s:property value='brandName'>" />
</s:iterator>
but this doesn't work. any idea?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: