我们正在沙发基础精简版上创建文档,例如,我需要知道存储在数据库中以同步到移动设备上的服务器的文档格式。
我们创建简单的文档:
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();
}
那么数据如何存储在该文档中?以什么格式?