GSP g:select 选项默认选择

发布于 2024-08-09 15:04:24 字数 334 浏览 7 评论 0原文

是否有可能在 g:select 标记中默认选择选项字段?

我只在文档中看到了“noSelection”参数。

<g:select name="user.age" from="${18..65}" value="${age}"
      noSelection="['':'-Choose your age-']"/>

但我需要从收到的数据中进行默认选择。

例如 18..65 是我的范围,我想选择 20 作为默认选择。

这是可能的还是我必须用javascript来做到这一点?

谢谢

Is there any possibility to select a option field by default in a g:select tag?

I only saw the "noSelection" parameter in the documentation.

<g:select name="user.age" from="${18..65}" value="${age}"
      noSelection="['':'-Choose your age-']"/>

But I need a default selection from the data I received.

For example 18..65 is my range and I want to select 20 as default selection.

Is that possible or do I have to do this with javascript?

Thank you

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

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

发布评论

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

评论(1

云淡月浅 2024-08-16 15:04:24

value 属性正是这样做的。来自 Grails 文档:

value(可选)- 当前选定的值,对于 from 列表中的元素之一,该值将 equals() 计算为 true。

因此,如果您想在 age 模型变量为 null 的情况下选择“20”,只需执行以下操作

<g:select name="user.age" from="${18..65}" value="${age ?: 20}"
      noSelection="['':'-Choose your age-']"/>

The value attribute does exactly that. From the Grails documentation:

value (optional) - The current selected value that evaluates equals() to true for one of the elements in the from list.

So, if you want to select "20" if your age model variable is null, just do

<g:select name="user.age" from="${18..65}" value="${age ?: 20}"
      noSelection="['':'-Choose your age-']"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文