admin管理员组文章数量:1345895
A custom implementation for the shouldComponentUpdate()
method as part of the React ponent lifecycle is not required.
I understand it's a boolean function that determines whether render()
will be called upon changes in ponent props
and state
, and there are mixins
like PureRenderMixin which implements the shouldComponentUpdate()
If no custom implementation nor mixins are provided. What's the default implementation and behavior?
A custom implementation for the shouldComponentUpdate()
method as part of the React ponent lifecycle is not required.
I understand it's a boolean function that determines whether render()
will be called upon changes in ponent props
and state
, and there are mixins
like PureRenderMixin which implements the shouldComponentUpdate()
If no custom implementation nor mixins are provided. What's the default implementation and behavior?
Share Improve this question edited Nov 1, 2015 at 20:35 mu is too short 435k71 gold badges859 silver badges818 bronze badges asked Nov 1, 2015 at 20:07 Ling ZhongLing Zhong 1,8041 gold badge15 silver badges24 bronze badges 1- As I understand it, the ponent renders if you don't implement this function. The function is provided to let you fine tune the rendering mechanism for special cases. – davestevens Commented Nov 1, 2015 at 20:13
3 Answers
Reset to default 6As of React v0.13 and v0.14 the default implementation equals to null
and as per this logic:
var shouldUpdate =
this._pendingForceUpdate ||
!inst.shouldComponentUpdate ||
inst.shouldComponentUpdate(nextProps, nextState, nextContext);
the ponent is updated every render cycle (since !inst.shouldComponentUpdate
evaluates to true
).
Defaults to true.
The default behaviour is to re-render on every state change, and in the vast majority of cases, you should rely on the default behaviour.
shouldComponentUpdate() is invoked before rendering when new props or state are being received. Defaults to true. This method is not called for the initial render or when forceUpdate() is used.
Given the documentation React Docs the default is true
:
shouldComponentUpdate() is invoked before rendering when new props or state are being received. Defaults to true.
本文标签:
版权声明:本文标题:javascript - What is the default implementation for "shouldComponentUpdate" lifecycle method in React componen 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743818089a2544291.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论