最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React - Ignore subnodes - Stack Overflow

programmeradmin5浏览0评论

Is there a way to stop react from removing/changing nodes embedded in a react ponent.

For example, I have a react ponent that acts as a container for a non-react ponent that manages its DOM on its own. Is there a way to mark such ponents for reactjs, so that it does not modify its DOM?

In my case, I want my react ponent to be inline-editable by CKeditor, but react always removes/destroys the editor and all the nodes it has added to the DOM, because they were not defined in the react ponent itself and so it thinks that those elements should not be there.

Any ideas?

Is there a way to stop react from removing/changing nodes embedded in a react ponent.

For example, I have a react ponent that acts as a container for a non-react ponent that manages its DOM on its own. Is there a way to mark such ponents for reactjs, so that it does not modify its DOM?

In my case, I want my react ponent to be inline-editable by CKeditor, but react always removes/destroys the editor and all the nodes it has added to the DOM, because they were not defined in the react ponent itself and so it thinks that those elements should not be there.

Any ideas?

Share Improve this question asked Jul 21, 2014 at 12:19 Van CodingVan Coding 24.6k25 gold badges92 silver badges137 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 15

If you return false from a shouldComponentUpdate method on your ponent, then React will step out of the way and the entire reconciliation process will be skipped for that subtree. Of course, this means that you need to manage all DOM mutations yourself in that area and can't take advantage of React.

Take a look at dangerouslySetInnerHTML on https://facebook.github.io/react/tips/dangerously-set-inner-html.html.

This is the method for adding markup that doesn't sticks to React's update methods and also unsupported tags.

This way you can still update your ponent, while not updating parts of it.

发布评论

评论列表(0)

  1. 暂无评论