Apollo调用填充数据prop的反应方式
graphql(withQLTag)(ReactComponent)
存在于组件类之外。
但是,如果我想通过预定义查询的反应支持来控制我使用哪些数据,以便我可以重复使用多个数据模型的列表呢?(我知道列表视图必须从所有数据中存在的属性中提取返回)
render() {
return(
<ReactComponent qlTag="Model1">
)...
有没有办法解决这个问题?
答案 0 :(得分:1)
您可以根据需要制作尽可能多的包装组件:
import MyListComponent from './somewhere';
const ProductListComponent = graphql(ProductListQuery)(MyListComponent)
const EventListComponent = graphql(EventListQuery)(MyListComponent)
const SomethingElseListComponent = graphql(SomethingElseListQuery)(MyListComponent)
将graphql
包装器想象为创建一个传递一些道具的组件。