我编写了一个自定义钩子,它使用 SWR 从我的 API 中检索数据,同时为请求设置“身份验证”标头。
对于所有成功的请求,该钩子都可以正常工作,但我希望能够处理失败的请求(400 个状态代码)。
我可以使用结果访问状态代码,const res = await fetch(url
但是如何将error
参数中的错误返回给钩子的调用者?
import useSWR from 'swr';
export default function useAPI(path) {
const auth = useAuth();
const { data, error, isValidating, mutate } = useSWR(
!path ? null : `${process.env.NEXT_PUBLIC_API_URL}${path}`,
async (url) => {
const res = await fetch(url, {
headers: {
Authorization: `Bearer ${auth.user.token}`,
accept: 'application/json',
},
});
return res.json();
}
);
return { data, error, isValidating, mutate };
}