我的应用程序看起来类似于下面的代码片段。
(我省略了很多实现细节,希望下面的代码足以解决我的问题)。
SampleApp.js
const SampleAppQuery = graphql`
list SampleAppQuery {
...ItemComponent_item
}
`
function SampleApp() {
return (
<QueryRenderer
environment={environment}
query={SampleAppQuery}
render={(error, props) => {
if (props) {
return <AppRefetchContainer list={props} />
}
}}
/>
)
}
AppRefetchContainer.js
class AppRefetchContainer extends Component {
render() {
<div>
<HeaderComponent refetchList={this._refetchList} />
{list.map(item => <ItemComponent item={item} />)}
</div>
}
_refetchList(params) {
this.props.relay.refetch(params)
}
}
export default createRefetchContainer(
AppRefetchContainer,
graphql`
fragment AppRefetchContainer_list on Item {
...ItemComponent_item
}
`,
graphql`
query AppRefetchContainerQuery($sortBy: String!)
list SampleAppQuery(sortBy: $sortBy) {
...ItemComponent_item
}
`
)
初始应用程序负载就可以了。单击标题之一应触发重新提取,以便可以按传递的参数对列表数据进行排序。当我触发重新获取时,服务器将以正确的数据(然而)响应,组件不会重新呈现。
我怀疑我的问题与我在此处定义片段的方式有关。我在初始页面加载时遇到的控制台错误是:
RelayModernSelector: Expected object to contain data for fragment
`AppRefetchContainer_list`, got `{"list":[{"__fragments":
{"ItemComponent_item":{}},"__id":"[some_valid_id]","__fragmentOwner":null},{...
问题:
我不确定如何解释该错误。这是为什么我无法重新渲染UI的原因吗?
我知道这种方法可能不是理想的方法,但是如何从不一定是查询片段的组件中refetch
来实现?
很高兴提供任何澄清或缺少的上下文:)