我有一个基于nodejs构建的lambda函数。
export const handler = async (event) => {
return {
statusCode: 200,
body: JSON.stringify({
"response_type": 'in_channel',
"text": 'hello'
})
};
};
我在松弛中得到的响应是:{“response_type”:“in_channel”,“text”:“hello”}而不是hello;
发生了什么事?我该如何解决这个问题?
我在松弛中得到的响应是:{“response_type”:“in_channel”,“text”:“hello”}而不是hello;
发生了什么事?我该如何解决这个问题?
这种情况很可能发生,因为未指定内容类型。
export const handler = async (event) => {
return {
statusCode: 200,
headers: {
"content-type": "text/plain"
},
body: JSON.stringify{
"response_type": 'in_channel',
"text": 'hello'
})
};
};