gpt4 book ai didi

javascript - 当使用 aws amplify on react 调用 api 网关时,我该如何获取状态码?

转载 作者:行者123 更新时间:2023-11-30 13:51:56 25 4
gpt4 key购买 nike

我的 API 网关(使用无服务器)设置为正确响应:

function buildResponse(statusCode, body) {
// console.log(body);
return {
statusCode: statusCode,
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Credentials": true
},
body: JSON.stringify(body)
};
}

将后端部署到 aws 后,我在客户端使用 React.js 和 aws amplify,我在其中调用:

return API.post("api", "/api");

问题我从 api 调用中正确获取了 token ,但没有获取状态代码。我如何构建 API 以便我也可以从 API 网关获取状态代码?

最佳答案

例如,从“get”下的 aws amplify 文档中查看此内容。如果您在 myInit 中包含“response”,您将能够获得包括状态码在内的整个 axios 对象。

let apiName = 'MyApiName';
let path = '/path';
let myInit = { // OPTIONAL
headers: {}, // OPTIONAL
response: true, // OPTIONAL (return the entire Axios response object instead of only response.data)
queryStringParameters: { // OPTIONAL
name: 'param'
}
}
API.get(apiName, path, myInit).then(response => {
// Add your code here
}).catch(error => {
console.log(error.response)
});

关于javascript - 当使用 aws amplify on react 调用 api 网关时,我该如何获取状态码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58068530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com