如何使用grails select标签将select标签中的值显示为10,15,20,25

时间:2013-06-20 06:55:36

标签: grails

如何使用grails select tag

在select标签选项中显示值10,15,20,25
<g:select  name="maxpage" from="${10..30}" />

10

15

20

25 。 。 。 1000

  

我想以这种格式显示

1 个答案:

答案 0 :(得分:4)

只需使用数组作为from属性:

<g:select  name="maxpage" from="${[10,15,20,25]}" />

更新

假设您想要在10到1000之间进行选择,步数为5,您可以尝试:

<g:select  name="maxpage" from="${(10..1000).step(5)}" />