gpt4 book ai didi

grails - 我们可以在 g :select optionValue? 中有多个字段吗

转载 作者:行者123 更新时间:2023-12-03 22:47:41 24 4
gpt4 key购买 nike

有没有办法在 optionValue 中显示多个字段名称?

<g:select name="id" from="${Books.list()}" optionKey="id"
value="" optionValue="name"
noSelection="${['null':'Select Publisher...']}"/>

经验:
<g:select name="id" from="${Books.list()}" optionKey="id"
value="" optionValue="name and author"
noSelection="${['null':'Select Publisher...']}"/>

最佳答案

如果您不想修改域类,则可以为选项值传递闭包:

<g:select name="id" from="${Books.list()}" optionKey="id"
value="" optionValue="${{it.name +' '+it.author}}"
noSelection="${['null':'Select Publisher...']}"/>

关于grails - 我们可以在 g :select optionValue? 中有多个字段吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4222483/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com