我正在使用 react-native,并尝试从 apollo-boost 加载 Apollo。当我尝试导入客户端时,收到错误消息“尝试分配给只读属性”。我不确定如何解决这个问题,从堆栈跟踪来看,它似乎在 apollo-boost 包中。有人知道我该如何解决这个问题吗?
react-native - 来自 apollo-boost 的 ApolloClient 试图分配给只读属性-LMLPHP

编辑:添加图片和细节。
当我尝试通过 Expo 加载应用程序时,我得到了这个。当它开始时,我明白了。堆栈跟踪提到的我的应用程序中的第一个文件 StoresScreens,有问题的行只是导入行。

import ApolloClient from 'apollo-boost';

最佳答案

我得到了同样的错误。通过使用 apollo-client、apollo-cache-inmemory、apollo-link-http 包来创建 Apollo 客户端而不是使用 apollo-boost 解决。

这是代码 App.js

import React from 'react'
import ApolloClient from 'apollo-client';
import { InMemoryCache } from 'apollo-cache-inmemory';
import { HttpLink } from 'apollo-link-http';

const withProvider = (Component) => {

  const cache = new InMemoryCache();
  const link = new HttpLink({
    uri: 'your-url'
  })
  const client = new ApolloClient({
    link,
    cache
  });
  return class extends React.Component {
    render() {
      return (
        <ApolloProvider client={client}>
          <Component {...this.props} client={client} />
        </ApolloProvider>
      )
    }
  }
}
export default withProvider(App);

关于react-native - 来自 apollo-boost 的 ApolloClient 试图分配给只读属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56263102/

10-11 23:52