我想将一个值从处理程序返回到API网关响应头。
Handler.js
module.exports.handler = function(event, context, cb) {
const UpdateDate = new Date();
return cb(null, {
body: {
message: 'test'
},
header: {
Last-Modified: UpdateDate
}
});
};
“端点”中的s-function.json
"responses": {
"400": {
"statusCode": "400"
},
"default": {
"statusCode": "200",
"responseParameters": {
"method.response.header.Cache-Control": "'public, max-age=86400'",
"method.response.header.Last-Modified": "integration.response.body.header.Last-Modified"
},
"responseModels": {
"application/json;charset=UTF-8": "Empty"
},
"responseTemplates": {
"application/json;charset=UTF-8": "$input.json('$.body')"
}
}
}
这可行。但我想知道如何使用“integration.response.header.Last-Modified”。我的处理程序回调合成错了吗?
编辑: “端点”中的s-function.json
“integration.response.header.Last-Modified”这不起作用。 我想知道特定的处理程序返回格式以将数据传递给“integration.response.header.Last-Modified”。
"responses": {
"400": {
"statusCode": "400"
},
"default": {
"statusCode": "200",
"responseParameters": {
"method.response.header.Cache-Control": "'public, max-age=86400'",
"method.response.header.Last-Modified": "integration.response.header.Last-Modified"
},
"responseModels": {
"application/json;charset=UTF-8": "Empty"
},
"responseTemplates": {
"application/json;charset=UTF-8": "$input.json('$.body')"
}
}
}
答案 0 :(得分:0)
lambda函数的所有输出都在响应正文中返回,因此您需要将响应正文的一部分映射到API响应标题。
module.exports.handler = function(event, context, cb) {
const UpdateDate = new Date();
return cb(null, {
message: 'test',
Last-Modified: UpdateDate
});
};
将产生有效载荷" {" message" :" test"," Last-Modified" :" ..."}"
在这种情况下,你会使用" integration.response.body.Last-Modified"作为映射表达式。作为旁注,命名事物" body"和#34;标题"在您的响应正文中可能会使映射表达式难以阅读。
谢谢, 莱恩