Parse Cloud Code触发器是否需要响应

时间:2016-11-23 21:32:51

标签: ios parse-platform triggers cloud-code

由于我对云代码不熟悉,我有上面提到的问题!

1)云代码触发器,beforeSave - afterSave等,完成后需要调用response.success和response.error吗?

2)如果是这样,客户是否有可能收到该回复?

编辑:对于第一个问题,我意识到"之前"仅触发...... 第二个问题仍然没有答案!

1 个答案:

答案 0 :(得分:1)

beforeSave()触发器中,response.sucess()会像这样返回给客户端。 只有在出现错误的情况下,才能返回特定的消息(在保存之前进行业务验证) 所以在你的云代码中你可以写:

Parse.Cloud.beforeSave("MyObject", function(request, response) {

  //business validation then if fail :
  response.error("there was an error blabla...");
}
});

然后客户端将收到带有相应消息的Parse Exception