struts属性标签检索对象
struts中是否可以通过property标签获取Object的属性?
例如,如果我有一个由用户名和电子邮件组成的用户对象,是否可以修改下面的代码以使其返回用户名和电子邮件而不是整个对象?
print("<s:iterator value="UserObjects"><tr><td><s:property/></td> </tr></s:iterator>");
我不知道为什么它拒绝让我在问题中输入 struts 标签, 对上述内容感到抱歉
目前,以上内容返回 UserObjects 中的所有内容。
谢谢!
Is it possible to get an Object's attribute through the property tag in struts?
For example, if I have a user object that consist of user name and email, is it possible to modify the code below to have it return the user name and email instead of the whole object?
print("<s:iterator value="UserObjects"><tr><td><s:property/></td> </tr></s:iterator>");
I don't know why it refuses to let me input struts tag into the question,
sorry for the above
Currently the above returns everything in UserObjects.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有一个具有如下方法的 bean:
您应该能够使用如下属性标记来访问它:
查看 struts 迭代器文档。
If you have a bean that has a method like this:
you should be able to access it with the property tag like this:
Check out the 3rd example down on the struts iterator documentation.