在Parse上测试Cloud Code的工作流程是什么?

时间:2014-12-14 15:47:14

标签: javascript android ios node.js parse-platform

所以我正在开发beforeSave / afterSave / etc中的一些业务逻辑。使用Parse.com键入webhooks。作为一个Javacscript / Parse新手,我发现这个流程有点单调乏味,我想知道我是否正确接近它。

  • 在iOS端,我发送测试PFObject
  • 这会激活我对该类的beforeSave()函数
  • 我遇到语法错误
  • 检查控制台日志/错误,直到我找到解决方案
  • 在文本编辑器中修复错误
  • 保存并运行'parse deploy'

重复广告恶心。

我可以使用Rest Console / Postman之类的东西来设置我的JSON请求吗?我可以在本地检查更多语法,而不是每次更改任意代码时都必须运行Parse Deploy吗?是否有任何改进的调试我可以使用像XCode / etc?

感谢。

1 个答案:

答案 0 :(得分:13)

在Parse CLI中,有一个命令可以执行以下操作:

develop app
  Monitors for changes to source files and uploads updated files to Parse.
  This will also monitor the parse INFO log for any new log messages and write
  out updates to the terminal.  This requires an app to be provided, to
  avoid running develop on production apps accidently.

在Parse Cloud代码根文件夹(执行parse develop MyApp)中运行parse deploy

完成后,终端将是交互式的 - 对源代码所做的任何更改 将自动更新。我创建了一份 MyApp 副本,以区分生产/开发,因此我不会意外推送代码。

然后我使用Postman来查看我的回复,如下所示: My sample request

p / s:使用Postman上的x-www-form-urlencoded来请求参数。