我在grails 3.3.3中编写自定义验证器(命令(时遇到了一些问题。具体来说,我正在尝试验证其正文由项目列表组成的 POST 请求。这就是我所拥有的...
命令:
class VoteCommand implements Validateable {
List<VoteItem> postList = [].withLazyDefault { new ListItem() }
static constraints = {
postList nullable: false
}
class ListItem implements Validateable {
String tag
String some_id
static constraints = {
some_id nullable: false, blank: false
tag nullable: false, blank: false
tag inList: Tag.values() as List
}
}
}
和有效载荷:
{
"noteVotesButWorks": [
{
"tag": "good"
},
{
"tag": "bad"
}
]
}
此有效负载通过我的控制器操作中的验证检查。
def save(VoteCommand command) {
println(command.errors) //grails.validation.ValidationErrors: 0 errors
if (command.hasErrors()) {
respond params.errors, view: 'create'
} else {
withFormat {
'*' { render status: CREATED }
}
}
}
对此操作发出 POST 请求后,我得到一个201
,grails.validation.ValidationErrors: 0 errors
打印到 stdout。
拜托,这里有人可以给我一些指示吗?
拜托,这里有人可以给我一些指示吗?
您的有效负载包括密钥noteVotesButWorks
。 数据绑定器将创建一个VoteCommand
实例,然后查看该实例上是否有 noteVotesButWorks
属性,而没有,因此数据绑定器实际上没有任何关系。 然后验证您的VoteCommand
实例,该实例通过是因为您唯一的约束是 postList nullable: false
,而 postList
不为 null。
这一切都在按设计工作。 您可能希望有效负载映射中的键与 VoteCommand
中 List
属性的名称匹配。
除此之外,没有充分的理由在属性初始化中包含.withLazyDefault { new ListItem() }
。 实际上,您根本不需要初始化该属性。 数据活页夹将为您完成此操作。
我认为你不希望nullable: false
用于postList。 空列表不为空。 我想你想要minSize: 1
.