0

使用 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"));
...

但是,我应该如何获取例如“值”字段中的值?

谢谢。


编辑:
获取文档
API 参考

4

1 回答 1

0

在文档中搜索允许您获取数组的内容,然后读取数组以获取值。

于 2014-03-07T16:19:37.687 回答