解析服务器迁移到Heroku后,云代码功能将无法运行

时间:2016-02-15 23:59:07

标签: heroku parse-platform

我按照从解析网站到Heroku的迁移路径。

Parse初始化但我找不到我的JS Angular Web App中的任何云代码函数,例如: -

Parse.Cloud.run('checkStats',{'id' : id }

网络选项卡显示带有404的POST请求。

http://..../parse/1/functions/checkStats

当我测试时,我使用了hurl.it(http工具)并获得了相同的结果,然后我更改了网址并删除了/ 1 /并且该功能正常工作。

http://..../parse/functions/checkStats

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

想出来,我必须在客户端将我的Parse JS SDK更新到最新版本(1.6.14)。此外,在云代码方面,需要更改代码,因为不再支持Parse.User.current()或Parse.Cloud.useMasterKey(),而是需要为相同的结果使用不同的函数... https://github.com/ParsePlatform/parse-server