0
我有這樣的功能:Redux - 由mapStateToProps返回的狀態是商店狀態的副本嗎?
const mapStateToProps = function(state){
return {
products: state.products
}
};
和實體店是這樣的:
var store = {
products: [1,2,3]
};
當我在所連接的組件使用this.props.products,我還需要做到這一點:
var products = this.props.products.slice();
作出副本,或者已經是副本。