admin管理员组文章数量:1341450
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 badges2 Answers
Reset to default 15If 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.
本文标签: javascriptReactIgnore subnodesStack Overflow
版权声明:本文标题:javascript - React - Ignore subnodes - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743589758a2506975.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论