apollo-react3不支持classComponent?
@graphql(JudgeQuery,{
options: ({ id }) => ({ variables: { id } })
})
@connect(({ globalState }) => ({ globalState }))
class Article extends React.Component {
}
报错:Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons
看文档说用的useQuery,apollo3难道不能支持class组件了吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
react@16.8
推出的 hooks 特性只能在函数组件中使用。如果你使用的库是用 hooks 实现的,就也只能在函数组件中使用。