我使用的是Distinct查询,但是它不起作用,并且在控制台上出现以下错误:
Cannot use the Master Key, it has not been provided.
我实际上像Javascript文档中所要求的那样提供了我的主密钥,应用密钥和Javascript密钥:
Parse.initialize("YOUR_APP_ID", "YOUR_JAVASCRIPT_KEY", "YOUR_MASTERKEY");
//javascriptKey is required only if you have it on server.
Parse.serverURL = 'http://YOUR_PARSE_SERVER:1337/parse'
我真的不明白为什么它不起作用。
以下是查询:
var query = new Parse.Query(Card);
query.distinct("identifier")
.then(function (results) {
console.log(results)
})
.catch(function (error) {
console.log(error)
});