gpt4 book ai didi

列表映射的 Grails 命令对象绑定(bind)失败

转载 作者:行者123 更新时间:2023-12-02 15:06:30 31 4
gpt4 key购买 nike

(Grails 版本:2.3.11,Groovy 版本:2.2.2)

我是 Groovy 和 Grails 的新手,所以如果我遗漏了一些明显的东西,请原谅我。我有一个包含 Map 的命令对象,键是整数(尽管我尝试过字符串并且它们也不起作用),值是 Details 对象的列表:

class Details {
Integer volume
Double price
}
class TheCommand {
Map<Integer, List<Details>> details = [:].withDefault { [].withLazyDefault { new Details() } }
String location
}

我的 GSP 中有这个:
<g:form controller="mapOfLists" action="create">
<g:textField name="location" size="7"/>
<table>
<g:each in="${(1..24)}" var="hour">
<tr>
<td>${hour}</td>
<g:each in="${(0..4)}" var="column">
<td><g:textField name="details[${hour}][${column}].price" size="4"/></td>
<td><g:textField name="details[${hour}][${column}].volume" size="3"/></td>
</g:each>
</tr>
</g:each>
</table>
<g:submitButton name="Submit" value="Submit"/>
</g:form>

和行动:
// trying the different binding approaches, none work
def create(TheCommand theCommand) {
// theCommand.hasErrors() -> false
// at this point theCommand's details is an empty map, I can see the details[x][y] values in the params object
bindData(theCommand, params)
// the bindData above didn't work, details is still an empty map
theCommand.properties['details'] = params
// the setting via properties above didn't work, details is still an empty map
}

两个问题:
1)关于尝试什么的任何想法?我已经看到有一种使用自定义活页夹的方法,但这似乎是 grails 应该处理的情况,所以我在走这条路之前先试一试。

2) 是否有更强大的数据绑定(bind)器?我已经浏览了相关的 SimpleDataBinder 代码 看来它只支持单索引属性

非常感谢你,
赛斯

最佳答案

如果不求助于自定义活页夹,我无法让它工作:(

至于更强大的数据绑定(bind)器,有@BindUsing它允许您定义一个闭包或实现 BindingHelper界面将您的输入格式化为您需要的任何内容。您甚至可以在其中使用 GORM 查找器来使用域实例填充属性。

我设法得到了这么多:

class TheCommand {
@BindUsing({ obj, source ->
def details = new HashMap<Integer, List<Details>>().withDefault { [].withLazyDefault { new Details() } }
source['details']?.collect { mapKey, mapValue ->
if (mapKey.integer) {
mapValue.collect { arrayKey, arrayValue ->
if (arrayKey.integer) {
def detailsObj = new Details(volume:new Integer(arrayValue.volume), price: new Double(arrayValue.price))
details[new Integer(mapKey)].add(new Integer(arrayKey), detailsObj)
}
}
}
}
return details
})
Map<Integer, List<Details>> details

String location
}

它适用于以下请求 curl http://localhost:8080/test/test/index --data "location=here&details.0.0.volume=20&details.0.0.price=2.2&details.0.1.volume=30&details.0.1.price=2"
它功能强大,但丑陋(尽管我的代码有一些可以更好地实现的部分)。我不知道为什么一个简单的 new Details(arrayValue)在那里不起作用,但我可能会遗漏一些明显的东西。

关于列表映射的 Grails 命令对象绑定(bind)失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27814015/

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