apollo-client 报错 DOMException: The user aborted a request.

最近用umijs,react开发项目,后端使用GraphQL技术数据映射,前端使用Apollo Client

问题

1.请求时候总是报错

devScripts.js:6791 Uncaught Error: The error you provided does not contain a stack trace.

Uncaught (in promise) DOMException: The user aborted a request.

apollo-client 报错 DOMException: The user aborted a request._第1张图片

  1. 看到这报错一脸懵逼,百度也没有对应的,还是在GitHub @apollo/client官网下issues

解决


const abortController = new AbortController();
const httpLink = createHttpLink({
  uri: `${LOTTERY_API_URL}/graphql`,
  fetchOptions: {
    mode: 'cors',
    signal: abortController.signal,
  },
});

const client = new ApolloClient({
  cache: new InMemoryCache(),
  link:httpLink,
});

apollo-client文档: https://www.apollographql.com...
参考:https://github.com/apollograp...

你可能感兴趣的:(apollo-client 报错 DOMException: The user aborted a request.)