PDF (US Ltr) - 1.2Mb
PDF (A4) - 1.2Mb
布尔表达式字符串可用于使用诸如 find()
和 remove()
之类的操作过滤集合或表。表达式针对每个文档或行评估一次。
以下布尔表达式字符串示例使用 find()
来搜索集合 “apples” 中具有 “red” 颜色属性的所有文档
apples.find('color = "red"').execute()
类似地,要删除所有红色苹果
apples.remove('color = "red"').execute()