使用 CBLite Android,并像这样存储文档(类似于 Android Grocery Sync 示例):
{
"check" : true,
"created_at" : "2014-02-25T10:16:46.026Z",
"text" : "Soap",
"prices":[ { "date" : "2014-02-25" , "value" : 12 } ]
}
我在“文本”字段中获取值,如文档所示:
...
Document document = row.getDocument();
String text = ((String)document.getCurrentRevision().getProperty("text"));
...
但是,我应该如何获取例如“值”字段中的值?
谢谢。