Node.js无服务器脱机在第一次请求后挂起

时间:2018-04-16 18:05:11

标签: node.js express serverless-framework-offline serverless-plugins

第一次当我发出请求它工作正常时,但是当我再次发出请求而没有重新启动服务器时,它会超时并返回一些承诺错误

following is the code and error

module.exports.getOne = (event, context, callback) => {
  context.callbackWaitsForEmptyEventLoop = false;

  db.once('open', () => {
      Client.findOne({name:{ $regex : new RegExp(event.pathParameters.name, "i") }})
        .then(client => callback(null, {
          statusCode: 200,
          body: JSON.stringify(client)
        }))
        .catch(err => callback(null, {
          statusCode: err.statusCode || 500,
          headers: { 'Content-Type': 'text/plain' },
          body: 'Could not fetch the note.'
        }))
        .finally(() => {
          // Close db connection or node event loop won't exit , and lambda will timeout
          db.close();
        });
    });
};

Error:

(node:3273) UnhandledPromiseRejectionWarning: Error: Cannot stop server while in stopping state

1 个答案:

答案 0 :(得分:0)

问题是您无法通过致电callback来完成通话,因此它认为您的getOne()功能尚未完成。

在使用模板

设置新的无服务器应用程序时,请查看无服务器提供的示例代码
module.exports.hello = (event, context, callback) => {
  const response = {
    statusCode: 200,
    body: JSON.stringify({
      message: 'Go Serverless v1.0! Your function executed successfully!',
      input: event,
    }),
  };

  callback(null, response);
};