AWS Lambda 导出类不起作用



我正在使用NodeJs 6.10.2。我正在使用 2 个文件

索引.js

var operation = require('./Handler/opHandler').opHandler;
var lambdaHandler = function () {
    var o = new operation();
    o.deleteMessage();
}
exports.lambdaHandler = function(event, context, callback) {
    handleSQSMessages(context, callback);
};

opHandler.js

opHandler = function() {
     this.db = '';
}
opHandler.prototype.deleteMessage = function (receiptHandle, callback) {
    // My code here
    // this.db = 'new val';
}
exports.opHandler = opHandler;

使用 NodeJs 6.10 在 AWS Lambda 上运行 index.lambdaHandler 时,会发生以下错误

 Syntax error in module 'index': SyntaxError
  at exports.runInThisContext (vm.js:53:16)
  at Module._compile (module.js:373:25)
  at Object.Module._extensions..js (module.js:416:10)
  at Module.load (module.js:343:32)
  at Function.Module._load (module.js:300:12)
  at Module.require (module.js:353:17)
  at require (internal/module.js:12:17)
  at Object.<anonymous> (/var/task/index.js:16:13)
  at Module._compile (module.js:409:26)
  at Object.Module._extensions..js (module.js:416:10)

我已经用谷歌搜索并在这里发现了类似的问题,但根据它,上面的代码应该在 NodeJs 6.10 中工作

尝试其他方法或模块导出。它应该适用于您的情况。

索引.js

var operation = require('./Handler/opHandler');
var lambdaHandler = function () {
    var o = new operation();
    o.deleteMessage();
}
exports.lambdaHandler = function(event, context, callback) {
    handleSQSMessages(context, callback);
};

opHandler.js

opHandler = function() {
     this.db = '';
}
opHandler.prototype.deleteMessage = function (receiptHandle, callback) {
    // My code here
    // this.db = 'new val';
}
module.exports = opHandler;

它解决了我的问题可能会对您有所帮助。

相关内容

  • 没有找到相关文章

最新更新