我有这样的函数,它们都在parse数据库中的同一个类中保存了东西。
Parse.Cloud.define("add_comment", function(request,response){
...
});
Parse.Cloud.define("edit_comment", function(request,response){
...
});
Parse.Cloud.define("like_comment", function(request,response){
...
});
有没有一种有效的方法可以在beforeSave中分离所有这些功能?
Parse.Cloud.beforeSave("Comments", function(request, response) {
//Should only work for "add_comment" and not for the other ones.
});