2
將BSON轉換爲JSON時,MongoDB adds the extensions to the JSON format。擺脫MongoDB擴展至JSON格式
但是,這些擴展會影響我們的前端設計。
有人可以建議任何Java API可以擺脫MongoDB添加的這些擴展嗎?
例如,這裏是MongoDB的給我們:
{"createdDate" : { "$date" : "2014-01-01T05:00:00.000Z"}}
但我們要的是:
{"createdDate" : "2014-01-01T05:00:00.000Z"}
感謝您的幫助!