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