gpt4 book ai didi

javascript - 在我的 react shouldComponentUpdate 函数中,this.props 和 nextprops 具有所有相同的属性,但它们不相等

转载 作者:行者123 更新时间:2023-11-30 06:55:14 24 4
gpt4 key购买 nike

<分区>

在我的 react shouldComponentUpdate 函数中,this.props 和 nextprops 具有相同的属性,但它们不相等。我的代码:

shouldComponentUpdate(nextProps) {
console.log(this.props);
console.log(nextProps);
console.log('nextProps vs this.props:', nextProps === this.props);
console.log('this.props.style vs nextProps.style:', this.props.style === nextProps.style);
console.log('this.props.data vs nextProps.data',this.props.data === nextProps.data);
return true;
}

输出是: enter image description here

我的困惑是 Prop 是否有一些隐藏属性。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com