let msg:string[] = ['a','b'];
export const flight = async (event, context, callback) => {
const responsee = {
statusCode: 200,
body: msg,
};
callback(null, responsee);
}
这一个适用于localhost,当我将其部署到AWS时,它会返回一个“内部服务器错误”。
当我对字符串进行字符串化时,它在AWS和localhost中工作正常。
const responsee = {
statusCode: 200,
body: JSON.stringify(msg),
};
想知道第一个代码段在AWS中返回错误的原因。