在开源解析服务器上实现云代码
Implementing Cloud Code on Open Source Parse Server
我正在使用新的 Parse Server 开发应用程序。我已经研究了很多,但无法弄清楚。我想 运行 一些服务器端代码(云代码),但我不知道如何使用 Heroku 和 Mongo 创建云代码文件。非常感谢任何帮助!
在应用程序的根目录中创建一个云文件夹并在该文件夹中创建一个 main.js 文件并将示例内容复制到文件
Parse.Cloud.define('hello', function(req, res) {
res.success('Hi');
});
然后在你的 Index.js 中提到这个文件在配置中的路径
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
});
我正在使用新的 Parse Server 开发应用程序。我已经研究了很多,但无法弄清楚。我想 运行 一些服务器端代码(云代码),但我不知道如何使用 Heroku 和 Mongo 创建云代码文件。非常感谢任何帮助!
在应用程序的根目录中创建一个云文件夹并在该文件夹中创建一个 main.js 文件并将示例内容复制到文件
Parse.Cloud.define('hello', function(req, res) {
res.success('Hi');
});
然后在你的 Index.js 中提到这个文件在配置中的路径
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
});