正如G.aziz所说,React.Memo的功能类似于纯组件。但是,您还可以通过向其传递一个定义为相等的函数来调整其行为。基本上,这个功能shouldComponentUpdate,如果你想让它,除非你还真
不 渲染。
const areEqual = (prevProps, nextProps) => true;const MyComponent = React.memo(props => { return }, areEqual);
欢迎分享,转载请注明来源:内存溢出
正如G.aziz所说,React.Memo的功能类似于纯组件。但是,您还可以通过向其传递一个定义为相等的函数来调整其行为。基本上,这个功能shouldComponentUpdate,如果你想让它,除非你还真
不 渲染。
const areEqual = (prevProps, nextProps) => true;const MyComponent = React.memo(props => { return }, areEqual);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)