reactJs的公共服务文件



我想创建一个通用的服务文件结构,用于调用reactJs中的外部api。有人能建议并给出一些示例演示代码吗?

export async function GetAllAuthorizationElements() {
let response = null;
await fetch(baseUrl + "/yourroute", {
headers: defaultHeader
}).then((response) => response.json()).then(data => response = data);
if (!IsAuthorized(response)) {
alert("Unauthorized")
return 403;
}
return response;
}

相关内容

  • 没有找到相关文章

最新更新