我在Parse中设置了一个工作,并且我有一堆status.message()
被调用,以便我可以调试函数中正在进行的操作。但是,当我运行该作业时,代码似乎没有执行,也没有记录任何消息。
由于某种原因,虽然调用了成功函数。
作业
Parse.Cloud.job("checkBag", function(request, status) {
// Gets the current time
var MILL_PER_MIN = 60000;
var now = new Date();
var minToDate = now.getTime() / MILL_PER_MIN;
status.message("test");
// Get all the bags
var query = new Parse.Query("Bag");
// Go though each of them
query.each(function(bag) {
...
...
},{
success: function() {
status.success("Job completed successfully.");
}, error: function() {
status.error("Uh oh, something went wrong.");
}
});
});