gpt4 book ai didi

json - Grails 无法将 JSON 中的日期/时间解码回 joda DateTime

转载 作者:行者123 更新时间:2023-12-02 13:58:44 29 4
gpt4 key购买 nike

我在使用 Grails 的 JodaTime 插件时遇到问题。该插件似乎正确地将输出转换为 JSON,但是当返回相同的 JSON 对象时,它似乎无法再次接受输出的日期格式作为输入。

这些是我得到的错误:

Field error in object 'server.Session' on field 'lastUpdated': rejected value [2011-12-19T14:15:03-06:00]; codes [typeMismatch.server.Session.lastUpdated,typeMismatch.lastUpdated,typeMismatch.org.joda.time.DateTime,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [server.Session.lastUpdated,lastUpdated]; arguments []; default message [lastUpdated]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'org.joda.time.DateTime' for property 'lastUpdated'; nested exception is java.lang.IllegalArgumentException: Invalid format: "2011-12-19T14:15:03-06:00" is malformed at "11-12-19T14:15:03-06:00"]
Field error in object 'server.Session' on field 'dateCreated': rejected value [2011-12-19T14:15:03-06:00]; codes [typeMismatch.server.Session.dateCreated,typeMismatch.dateCreated,typeMismatch.org.joda.time.DateTime,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [server.Session.dateCreated,dateCreated]; arguments []; default message [dateCreated]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'org.joda.time.DateTime' for property 'dateCreated'; nested exception is java.lang.IllegalArgumentException: Invalid format: "2011-12-19T14:15:03-06:00" is malformed at "11-12-19T14:15:03-06:00"] id=33 version=0>

这是非常基本的域模型:
package server

import org.joda.time.DateTime

class Session {

DateTime dateCreated
DateTime lastUpdated
String ip

static constraints = {
ip blank: false
}
}

下面是 show 和 update 方法(分别发送和接收 JSON):
def show() {
def sessionInstance = Session.get(params.id)
if (!sessionInstance) {
flash.message = message(code: 'default.not.found.message', args: [message(code: 'session.label', default: 'Session'), params.id])
redirect(action: "list")
return
}

def response = [sessionInstance: sessionInstance]
withFormat {
html response
json {render response as JSON}
xml {render response as XML}
}
}

def update() {

def sessionInstance = Session.get(params.id)
if (!sessionInstance) {
flash.message = message(code: 'default.not.found.message', args: [message(code: 'session.label', default: 'Session'), params.id])
redirect(action: "list")
return
}

if (params.version) {
def version = params.version.toLong()
if (sessionInstance.version > version) {
sessionInstance.errors.rejectValue("version", "default.optimistic.locking.failure",
[message(code: 'session.label', default: 'Session')] as Object[],
"Another user has updated this Session while you were editing")
render(view: "edit", model: [sessionInstance: sessionInstance])
return
}
}

sessionInstance.properties = params // <----- This is what causes the errors

log.info("instance: ${sessionInstance.dump()}") // <------ This is where I'm seeing the error messages

if (!sessionInstance.save(flush: true)) {
render(view: "edit", model: [sessionInstance: sessionInstance])
return
}

flash.message = message(code: 'default.updated.message', args: [message(code: 'session.label', default: 'Session'), sessionInstance.id])
redirect(action: "show", id: sessionInstance.id)
}

我不确定我需要做什么来纠正这个问题,或者即使我做对了,因为我对 Grails 很陌生。实际上,引起问题的两个日期字段应该由 GORM 内部 100% 处理,我宁愿 Controller 完全忽略它们,但是一旦域模型获得,就会有其他类似的日期字段需要更新填写。

如何获得自动 JSON 解码以正确转换回 joda 时间 DateTime 对象?

注意:这目前是客户端-服务器应用程序的概念验证。

最佳答案

我不确定原因,也不确定为什么此修复有效,但添加 jodatime.format.html5 = true到 Config.groovy 文件使一切正常。

据我所知,JSON 输出没有任何变化,但无论出于何种原因,它都会使 JSON 输入处理和数据绑定(bind)工作。

唯一暗示这一点的文档是 here .

尝试设置 DateTime 的格式通过 jodatime.format.org.joda.time.DateTime = "yyyy-MM-dd'T'HH:mm:ss.SSSZZ" 之类的东西完全没有效果。

关于json - Grails 无法将 JSON 中的日期/时间解码回 joda DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8567078/

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