我可以在Amazon Elastic Beanstalk上运行parse-server
并使用本地NodeJS在本地运行parse-dashboard
,但即使在配置的设置中,云代码日志也不会显示:
var api = new ParseServer({
databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
appId: process.env.APP_ID || 'myAppId',
masterKey: process.env.MASTER_KEY || '', //Add your master key here. Keep it secret!
fileKey: process.env.FILE_KEY || '', // Add the file key to provide access to files already hosted on Parse
serverURL: process.env.SERVER_URL || 'http://localhost:1337/parse', // Don't forget to change to https if needed
liveQuery: {
classNames: ["Posts", "Comments"] // List of classes to support for query subscriptions
}
});
配置中可能缺少什么?
这是我希望记录的代码:
Parse.Cloud.define('hello', function(req, res) {
console.log('hello method called');
res.success('Hi');
});
我可以从我的示例网站上看到该方法返回正确的响应,但日志未显示在解析仪表板中。
答案 0 :(得分:1)
在配置中你无能为力。 CloudCode目前并不打算在Parse Dashboard中显示,但Parse社区正在研究它。查看并关注该问题(https://github.com/ParsePlatform/parse-server/issues/895),一旦关闭,您就可以在Parse Dashboard上查看cloude代码。