React createElement vs cloneElement

2020-07-09 09:53发布

Can anyone let me know if using cloneElement (on exist element instance) or createElement (on react Element class) which one is better in term of performance?

Sometimes cloning something is faster than create new instance. Please let me know. Thanks

2条回答
成全新的幸福
2楼-- · 2020-07-09 09:59

In Safari 10.0.3, cloneElement is 31% slower for the JSPerf test mentioned above (in Chrome, createElement is 17% slower for me).

I also made another JSPerf test, where cloneElement is compared to "function-as-children". In this case, cloneElement is slower by a big margin in both Chrome (26%) and Safari (46%).

查看更多
疯言疯语
3楼-- · 2020-07-09 10:13

Using cloneElement will be usually be faster because you only need to instantiate one initial component.

This jsperf test shows cloneElement to be nearly twice as fast as createElement for Chromium 45 on Linux:

  • cloneElement ~1.7m ops/second
  • createElement ~0.85m ops/second

If you have a base component that you can clone without changing, then using cloneElement is a clear choice, both semantically and in terms of performance.

查看更多
登录 后发表回答