我的直觉告诉我不,但我很难想出更好的方法。
目前,我有一个显示项目列表的组件。根据提供的props
,此列表可能会更改(即过滤更改或上下文更改)
例如,给定一个新的this.props.type
,状态将更新如下:
componentWillReceiveProps(nextProps) {
if (nextProps.type == this.state.filters.type) return
this.setState({
filters: {
...this.state.filters,
type: nextProps.type,
},
items: ItemsStore.getItems().filter(item => item.type == nextProps.type)
})
}
这一切都很好,但现在我的要求已经改变,我需要添加一个新的过滤器。对于新过滤器,我必须执行API调用以返回有效项ID的列表,并且我只想在同一列表组件中显示具有这些id的项。我应该怎么做呢?
我曾考虑过从componentWillReceiveProps
调用相应的操作,但这似乎不对。
componentWillReceiveProps(nextProps) {
if (nextProps.type == this.state.filters.type && nextProps.otherFilter == this.state.filters.otherFilter) return
if (nextProps.otherFilter != this.state.filters.otherFilter) {
ItemsActions.getValidIdsForOtherFilter(nextProps.otherFilter)
// items will be properly updated in store change listener, onStoreChange below
}
this.setState({
filters: {
...this.state.filters,
type: nextProps.type,
otherFilter: nextProps.otherFilter,
},
items: ItemsStore.getItems().filter(item => item.type == nextProps.type)
})
},
onStoreChange() {
let validIds = ItemsStore.getValidIds()
this.setState({
items: ItemsStore.getItems().filter(item => item.type == this.state.filters.type && validIds.indexOf(item.id) > -1)
})
}
答案 0 :(得分:9)
2018年1月22日更新:
最近有一个RFC-PR for React was merged,它弃用componentWillReceiveProps
,因为它可以在即将到来的异步呈现模式中使用时取消保存。一个例子就是从这个生命周期钩子中调用flux动作。
调用操作的正确位置(即side effects)是在React完成渲染之后,这意味着componentDidMount
或componentDidUpdate
。
如果操作的目的是获取数据,React可能会在将来支持这些事情的新策略。与此同时,坚持使用上述两个生命周期钩子是安全的。