new AV.Query('Todo') .descending('createdAt') .find() .then(todos => this.setData({ todos })) .catch(console.error);
我想查询Todo表中所有的记录,包括其他客户端创建,为啥只能返回客户端自己的?求教!!!
备注:Todo表中的权限全部是public的
已解决!!! acl.setPublicReadAccess(true);