PDF(美国信函) - 1.4Mb
PDF(A4) - 1.4Mb
布尔表达式字符串可以在使用 find()
和 remove()
等操作过滤集合或表时使用。表达式针对每个文档或行求值一次。
以下布尔表达式字符串示例使用 find()
从集合 “apples” 中搜索所有具有 “red” 颜色属性的文档
apples.find('color = "red"').execute()
类似地,要删除所有红苹果
apples.remove('color = "red"').execute()