0

ソファ ベース ライトでドキュメントを作成しています。たとえば、モバイル デバイスのサーバーと同期するためにデータベースに格納されるドキュメントの形式を知る必要があります。

簡単なドキュメントを作成します。

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());

次に、ドキュメントのプロパティを配置します。

try {
    document.putProperties(docContent);
} catch (CouchbaseLiteException e) {
    e.printStackTrace();
}

では、データはそのドキュメントにどのように保存されますか? どの形式で?

4

2 に答える 2

0

これでうまくいきます。ハッシュマップは必要ありません

document.Put("message", "Hello Couchbase Lite 1");
于 2015-03-20T05:38:03.480 に答える