Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 AWS API Gateway 和 Lambda,我正在尝试将有效的 Json 对象传递给 Lambda 函数,以避免清理函数中的数据。使用此代码:
"params" : "$input.params()",
将导致将此数据发送到 Lambda 函数:
"params" : "{path={}, querystring={src_build=rfsdfsdf}, header={}}",
是否有解决方案将 $input.params 作为有效的 json 字典?
答案可能是公正的$input.json('$')。
$input.json('$')
我根据API Gateway Developer Guide中的信息给出了这个答案。