我正在使用很棒的https://github.com/apollographql/react-apollo库,我想看看是否有比我现在做的更好的约定将数据加载到组件中。
我已经将我的组件设置为使用 apollo HOC 将数据加载到我的组件中,如下所示:
const mainQuery = gql`
query currentProfileData($userId:String, $communityId:String!){
created: communities(id:$communityId) {
opportunities{
submittedDate
approvalDate
status
opportunity{
id
}
}
}
}
`;
const mainQueryOptions = {
options: {
variables: { userId: '_', communityId: '_' },
},
};
const ComponentWithData = compose(
graphql(mainQuery, mainQueryOptions),
)(Component);
这种设置效果很好,但有一些问题。
我最终得到的查询总是运行两次,因为我需要将 props 传递给 apollo refetch 以进行查询。我还必须传入一些虚拟数据(也称为“_”)以防止获取无用的数据。
我最终不得不在 componentWillReceiveProps 中做一些花哨的检查以防止多次加载查询。
- 我不能在查询中使用跳过选项,因为这会阻止传入重新获取函数。
如果我完全避开 HOC 并直接通过 apollo 手动运行查询,我该如何解决这个问题?