我们正在沙发基础上创建文档我需要知道存储在数据库中的文档格式,以便在移动设备上同步到服务器。
我们创建简单的文档:
com.couchbase.lite.Document document = database.createDocument();
Map<String, Object> docContent = new HashMap<String, Object>();
docContent.put("message", "Hello Couchbase Lite 1");
docContent.put("name", "raheel");
docContent.put("lastUpdated", this.date());
然后放置Document属性:
try {
document.putProperties(docContent);
} catch (CouchbaseLiteException e) {
e.printStackTrace();
}
那么数据如何存储在该文档中?用什么格式?
答案 0 :(得分:0)
Couchbase以JSON格式存储数据。
答案 1 :(得分:0)
这样就可以了,不需要hashmap
document.Put("message", "Hello Couchbase Lite 1");