我现在使用如下代码进行获取,但是失败
请问,如何获取所有用户的用户名?
return new AV.Query('_User')
.equalTo('role', '五院员工')
// .descending('updatedAt')
.find()
.then(this.setUsers)
.catch(error => console.error(error.message));
给出的提示如下:
asdebug.js:1 GET https://api.leancloud.cn/1.1/classes/_User?where=%7B%22role%22%3A%22%E4%BA%94%E9%99%A2%E5%91%98%E5%B7%A5%22%7D 403 (Forbidden)
我找了User API中的说明,貌似没有相近的功能。