1

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

1 に答える 1