0
我有一個反應路由器應用程序,它在/users
上安裝User
。它工作正常。當組件收到道具時如何做某事
然後,我點擊一個/users?page=2
鏈接,通過新的道具。這裏getData
使用this.props.location.query
。因此,從componentWillReceiveProps調用getData將從第1頁而不是第2頁獲取內容。
如果它存在,我將使用組件HasReceived Props方法。我能做些什麼?
componentWillMount: function(){
this.setState({data:null});
this.getData();
},
componentWillReceiveProps: function(nextProps){
this.setState({data:null});
this.getData();
},