我正在为 iOS 使用 RestKit v0.20.0-pre6。我的输入是来自在 Google App Engine 上运行的服务的 JSON。这是从服务返回的内容:
{
action:"NOP",
payload:null,
timeStamp:new Date(1359427714679),
type:null
}
这是我在输出窗口中从 RestKit 显示的错误:
E restkit.network:RKResponseMapperOperation.m:240
Failed to parse response data: Loaded an unprocessable response (200) with content type 'application/json'
当调用 NSJSONSerialization 来解析数据时,它会窒息。我确定它是包含的行new Date(1359427714679)
,但我不确定如何解析这一行。RestKit 文档提到编写自己的格式化程序,但我不清楚如何做到这一点。
任何有关如何解决此问题的见解将不胜感激。