我正在使用App42作为我的移动后端。我需要在我正在保存的JSON中添加日期字段,并进一步对其进行查询以进行日期搜索。我无法在文档中找到它。任何人都可以告诉我这样做的日期格式是什么?
答案 0 :(得分:0)
您没有提到您正在使用的SDK。 我在App42 json存储中发布了一个用于日期搜索的Android示例代码。
String yourDate = Util.getUTCFormattedTimestamp();
JSONObject jsonData = new JSONObject();
jsonData.put("name", "sachin");
jsonData.put("DOB", yourDate);
// Inserting json document.
Storage storageObj = storage.insertJSONDocument("dbName", "collectionName", jsonData);
System.out.println(storageObj);
// building query.
Query query = QueryBuilder.build("DOB", yourDate, Operator.EQUALS);
// find documents by query.
Storage result = storage.findDocumentsByQuery("dbName", "collectionName", query);
System.out.println(result);