如何在struts 2 select中显示不同的值

发布于 2024-09-02 13:02:53 字数 100 浏览 1 评论 0原文

我想知道如何在 struts 2 select 中显示不同的值。 例如:我想将 Jan、Feb 作为月份,其中值应分别超过 1,2。

如果有人知道这一点请告诉我 谢谢。

I want to know how to display a different value in struts 2 select.
eg: i want to put Jan,Feb as month where the value should pass 1,2 respectively.

if anybody aware of this please let me know
thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

℉服软 2024-09-09 13:02:53

请参阅以下示例(来自 Struts 2.1.8 API 文档):

<s:select label="Months"
        name="months"
        headerKey="-1" headerValue="Select Month"
        list="#{'01':'Jan', '02':'Feb', [...]}"
        value="selectedMonth"
        required="true"
 />

list 属性包含一个映射,其中键是将要发送的值,值是将要显示的值。

当然,月份是静态的,但您可以使用域对象列表或任何您需要的 bean。在这种情况下,应该存储列表,通常作为操作类的字段。然后您将引用列表或地图:

 <s:select label="User"
        name="users"
        headerKey="-1" headerValue="Select User"
        list="users"
        value="selectedUser"
        required="true"
 />

在这种情况下,您的操作将包含一个带有用户名及其 ID 的地图以及一个 getter:getUsers()

如果您的操作的 getUsers() 方法返回 User 对象列表,并且 User 类至少具有(让我们假设)idusername 字段,那么您将拥有指定用于传递值的字段以及用于在选择中显示的字段。这是通过 select 标签的 listKeylistValue 属性完成的:

 <s:select label="User"
        name="users"
        headerKey="-1" headerValue="Select User"
        list="users"
        listKey="id"
        listValue="username"
        value="selectedUser"
        required="true"
 />

See the following example (from the Struts 2.1.8 API doc) :

<s:select label="Months"
        name="months"
        headerKey="-1" headerValue="Select Month"
        list="#{'01':'Jan', '02':'Feb', [...]}"
        value="selectedMonth"
        required="true"
 />

The list attribute contains a map where the key is the value that will be sent and the value is the value that will be displayed.

Of course, months are static, but you could use a list of domain objects or whatever beans you need. In this case the list should be stored, typically as a field of your action class. Then you will refer to the list or map :

 <s:select label="User"
        name="users"
        headerKey="-1" headerValue="Select User"
        list="users"
        value="selectedUser"
        required="true"
 />

In this case your action will contain a map with the usernames and their ids and a getter for it : getUsers().

If the getUsers() method of your action returns a list of User objects, and the User class has at least (let's assume) the id and username fields, you will have to specify which field to use for value to be passed and which field to use for display in the select. This is done with the listKey and listValue attributes of the select tag :

 <s:select label="User"
        name="users"
        headerKey="-1" headerValue="Select User"
        list="users"
        listKey="id"
        listValue="username"
        value="selectedUser"
        required="true"
 />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文