解析点 com 销毁解析数据库中的所有用户数据
Parse dot com destroy all userdata from parse database
我想在解析的云代码中设置我的自定义代码。
Parse.Cloud.job("deleteUser", function(request, status) {
const query = new Parse.Query("SegmentData");
query.equalTo("userID", request.userID);
query.find()
.then(Parse.Object.destroyAll)
.catch(function(error) {
console.error("Error finding related comments " + error.code + ": " + error.message);
});
const query2 = new Parse.Query("ShowData");
query.equalTo("userID", request.userID);
query.find()
.then(Parse.Object.destroyAll)
.catch(function(error) {
console.error("Error finding related comments " + error.code + ": " + error.message);
});
});
这是我到目前为止编写的代码。我想销毁所有拥有用户名的用户。它们甚至可以超过 1000。如果用户有超过 1000 条记录,这是否有效,还是我必须修改我的代码?
使用解析服务器,每个查询的限制为 100,您需要设置为
query.limit(1000);
如果您希望最多拥有 1000 个用户
你可以在这里看到解析服务器如何测试和设置每个查询的限制:
我想在解析的云代码中设置我的自定义代码。
Parse.Cloud.job("deleteUser", function(request, status) {
const query = new Parse.Query("SegmentData");
query.equalTo("userID", request.userID);
query.find()
.then(Parse.Object.destroyAll)
.catch(function(error) {
console.error("Error finding related comments " + error.code + ": " + error.message);
});
const query2 = new Parse.Query("ShowData");
query.equalTo("userID", request.userID);
query.find()
.then(Parse.Object.destroyAll)
.catch(function(error) {
console.error("Error finding related comments " + error.code + ": " + error.message);
});
});
这是我到目前为止编写的代码。我想销毁所有拥有用户名的用户。它们甚至可以超过 1000。如果用户有超过 1000 条记录,这是否有效,还是我必须修改我的代码?
使用解析服务器,每个查询的限制为 100,您需要设置为
query.limit(1000);
如果您希望最多拥有 1000 个用户
你可以在这里看到解析服务器如何测试和设置每个查询的限制: