皆さん、こんにちは 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
}
}