gpt4 book ai didi

node.js - IBM Openwhisk,无法提取路由参数

转载 作者:太空宇宙 更新时间:2023-11-04 00:00:33 25 4
gpt4 key购买 nike

大家好,我已经在 IBM 云上部署了一个函数,我通过 Web api 调用它,但是除了那些涉及路由参数的函数之外,所有函数都工作正常,因为我无法提取它们。我正在使用无服务器框架,当调用变量 __ow_path 时,它返回空。任何帮助将不胜感激。谢谢。

serverless.yml 文件:

getById:
handler: handler.getById
overwrite: true
annotations:
web-export: true
events:
- http:
method: GET
path: /users/{userid}
resp: http

handler.js 文件:

module.exports.getById = async (params) => {
return {
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
params,
msg: params.__ow_path,
created: new Date()
}),
statusCode: 200
}
}

最佳答案

请将serverless-openwhisk软件包升级到版本0.18.3 。这是由于 known bug 0.18 中引入。

上面的例子是有效的。

关于node.js - IBM Openwhisk,无法提取路由参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54890142/

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