0
當解析服務器上詢問這就是結果:解析服務器返回錯誤的日期格式
{
"results": [
{
"objectId": "BMRfgFD1SU",
"username": "[email protected]",
"createdAt": "2017-04-13T16:52:37.661Z",
"updatedAt": "2017-04-13T16:52:37.661Z",
"ACL": {
"*": {
"read": true
},
"BMRfgFD1SU": {
"read": true,
"write": true
}
}
}
]
}
的問題是,日期格式現在是一個字符串但它應該是這樣的:
{
"__type": "Date",
"iso": "2015-03-01T15:59:11-07:00"
}
有趣......我可以重現。我在文檔中找不到任何地方提到特殊字段createAt和updatedAt與其他日期字段的處理方式不同。你知道這是不是在parse.com比parse-server不同嗎?我的用戶創建的日期字段按照您的預期顯示,而不是createdAt和updatedAt。 –
createdAt,updatedAt看起來對我有效,根據文檔:http://docs.parseplatform.org/rest/guide/#objects – flovilmart