我正在尝试将useSWR集成到我正在处理的下一个 js 项目中。
我想将配置作为参数传递给 fetcher。我已阅读文档中的多个参数
但由于某种原因它没有返回数据。它正在发出 api 请求,我可以在网络选项卡中看到它。
不知道该怎么做。
有什么建议么?
const fetcher = async (url, config) => {
let res;
if (config) {
res = await fetch(url, config);
} else {
res = await fetch(url);
}
if (!res.ok) {
const error = new Error('An error occurred while fetching the data.');
error.info = await res.json();
error.status = res.status;
throw error;
}
return res.json();
};
const { data, error } = useSWR(
[
rolesUrl,
{
headers: {
Authorization: `Bearer ${user.token}`,
'Content-Type': 'application/json',
},
},
],
fetcher
);