struts属性标签检索对象

发布于 2024-07-08 22:23:39 字数 381 浏览 5 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴骨ら 2024-07-15 22:23:39

如果您有一个具有如下方法的 bean:

public String getMyProperty()
{
  return "Test";
}

您应该能够使用如下属性标记来访问它:

<s:iterator value="myList">
  <s:property value="myProperty" />
</s:iterator>

查看 struts 迭代器文档

If you have a bean that has a method like this:

public String getMyProperty()
{
  return "Test";
}

you should be able to access it with the property tag like this:

<s:iterator value="myList">
  <s:property value="myProperty" />
</s:iterator>

Check out the 3rd example down on the struts iterator documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文