gpt4 book ai didi

amazon-web-services - 在无服务器框架 1.0 中使用路径参数

转载 作者:行者123 更新时间:2023-12-04 05:36:51 25 4
gpt4 key购买 nike

我想使用路径参数 /customer/{customerId}获取 请求以使用 AWS Lambda 查询客户:

functions:
createCustomer:
handler: handler.createCustomer
events:
- http:
path: customer
method: post
readCustomer:
handler: handler.readCustomer
events:
- http:
path: customer
method: get

我必须如何定义路径参数才能使用 将其传递给我的 AWS Lambda 函数无服务器框架 1.0 ?

最佳答案

在 serverless.yml 中定义

readCustomer:
handler: handler.readCustomer
events:
- http:
path: customer/{customerId}
method: get

访问 customerId在代码中
const customerId = event.pathParameters.customerId;

关于amazon-web-services - 在无服务器框架 1.0 中使用路径参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39097572/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com