2

每当我尝试通过使用离线运行无服务器框架时

sls 离线

在此处输入图像描述

对于每个功能,我都会收到此警告。

4

2 回答 2

0

这似乎是无服务器离线的问题,已在较新版本中修复 - https://github.com/dherault/serverless-offline/issues/381

您是否尝试过升级 Serverless Offline?

于 2019-12-31T12:20:10.023 回答
0

这里我使用了 s-function.json文件,在这个文件中,我改变了

"runtime": "nodejs" instade of "nodejs8.10", 还添加端点

"endpoints": [
      {
        "path": "func-name",
        "method": "POST",
        "requestParameters": {
          "htmlContent": true
        },
        "requestTemplates": {
          "application/json": {
            "payload": "$input.json('$')"
          }
        }
      }
  ],

这对我有用。

于 2020-01-01T11:42:44.380 回答