您可以在Google Cloud Datastore查询中使用空数组过滤属性吗?
const query = datastore.createQuery('Task')
.filter('arrayValue', '=', '');
最佳答案
当前没有一种方法可以过滤空数组。
另一种方法是将空数组设置为'null'类型,然后就可以对其进行过滤。
关于node.js - 如何在Cloud Datastore中查询空数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39714305/