My React組件具有一個prop類,它是基於來自redux存儲庫的數據的類實例。React類實例prop阻止使用PureComponent
原因是使用類及其所有自定義方法(超過50個)處理此數據要方便得多。
我無法使用PureComponent,因爲React始終認爲此道具已更改。問題是,我的React組件大部分都連接到這個支持...
我知道解決方案像重新選擇,但這意味着有太多(我的類有自定義方法多)選擇器只用於操作的這些數據。
你會建議什麼?
我Redux的選擇看起來是這樣的:
getStation(state) {
// some logic to fetch the right station
return new WeatherStation(state.services.stationList[i])
}
其中氣象站是:
class WeatherStation {
constructor (data) {
this.station = data
}
getId() {...}
// many more methods
}
和我的陣營Compoonent內:
class MyComponent extends React.Component {
...
const mapStateToProps = (state, ownProps) => {
return {
station: getStation(state),
}
}
}
你可以發佈你的代碼的相關部分? –
你有沒有試過ImmutableJS? – hawk
還想看代碼。特別是你創建你的類實例的地方。 – jonahe