在开源解析服务器上实现云代码

时间:2016-03-02 04:51:13

标签: ios swift parsing cloud-code

我正在使用新的Parse Server开发应用程序。我已经研究了很多,但无法弄清楚这一点。我想运行一些服务器端代码(Cloud Code),但我无法弄清楚如何使用Heroku和Mongo创建一个Cloud Code文件。非常感谢任何帮助!

1 个答案:

答案 0 :(得分:3)

在app的根目录中创建一个云文件夹并在该文件夹中创建一个main.js文件并复制文件中的示例内容

Parse.Cloud.define('hello', function(req, res) {
  res.success('Hi');
});

然后在你的Index.js中提到config

中该文件的路径
var api = new ParseServer({
  databaseURI: 'mongodb://localhost:27017/dev',
  cloud: __dirname + '/cloud/main.js',
  appId: 'myAppId',
  masterKey:  '', //Add your master key here. Keep it secret!
  serverURL: 'http://localhost:1337'  // Don't forget to change to https if needed
});