组件更新机制
使用this.setState()和父组件传参props的值发生改变
会重新跑 render() 方法, 但不会跑didmount
如果子组件在didmount里利用父组件传的参数去请求数据,并在render方法里 渲染,这时props发生改变重新执行render方法重新渲染上次请求数据,并不会重新请求数据,所以没有更新
解决方法
父组件调用子组件更新方法,让其重新请求数据
// 父组件
<CustomPage pageId={link} onRef={ref => { this.customPage = ref }} />
// 更新
this.customPage.refresh()
// 子组件
componentDidMount() {
this.props.onRef(this)
console.log('customPage', '1243')
this.refresh()
}
async refresh() {
const { pageId } = this.props
const pageData = await get(`/pages/${pageId}`)
console.log('页面数据', pageData)
this.setState({ pageData })
}