我正在使用 ra-postgraphile 作为 react-admin 项目的数据提供者,我需要拦截错误 api 响应。是否有任何可用的错误对象或函数?如果是,我可以得到一份文件吗?
还在ra-postgraphile repo中发布了一个问题。
源代码
const httpLink = createHttpLink({
uri: Config.postgraphileUrl
});
const authLink = setContext((_, { headers }) => ({
headers: {
...headers,
authorization: token ? `Bearer ${token}` : '',
'Content-Type': 'application/json'
}
}));
const client = new ApolloClient({
link: authLink.concat(httpLink),
cache: new InMemoryCache()
});
useEffect(() => {
(async () => {
const dataProvider = await pgDataProvider(client);
setDataProvider(() => dataProvider);
})();
}, []);