小编Tom*_*nes的帖子

serverless-offline 可选路径参数

我正在尝试使用可选参数设置 GET 请求,但是当我没有可选参数的情况下在本地调用 url 时出现错误。不过,它在 lambda 上在线运行良好。我做错了什么?

我将无服务器版本 1.24.1 与无服务器离线插件版本 3.16.0 一起使用

这是我在serverless.yml 中的请求定义:

functions:
getitems:
    handler: lambda.handler
    events:
      - http:
            path: item/store/{storeid}/{itemstatus}
            method: get
            cors: true
            request:
                parameters:
                  paths:
                    storeid: true
                    itemstatus: false
Run Code Online (Sandbox Code Playgroud)

这个网址有效:

http://localhost:3000/item/store/123456/used
Run Code Online (Sandbox Code Playgroud)

这不

http://localhost:3000/item/store/123456
Run Code Online (Sandbox Code Playgroud)

并给我这个输出

{
   statusCode: 404,
   error: "Serverless-offline: route not found.",
   currentRoute: "get - /item/store/123456",
   existingRoutes: [
       "get - item/store/{storeid}/{itemstatus}"
   ]
}
Run Code Online (Sandbox Code Playgroud)

非常感谢

node.js serverless-framework serverless-framework-offline

6
推荐指数
2
解决办法
3700
查看次数