React:映射ReactDOM.findDOMNode(this)的子节点

时间:2016-02-21 12:28:32

标签: reactjs react-dom

我想得到ReactDOM.findDOMNode的孩子(这个) 所以我可以根据refs设计样式。具体显示没有人参考,其他人参考。

我以为我可以

blockNode = ReactDOM.findDOMNode(this).children

React.Children.map(blockNode, function(el) {
    console.log('el ',el);
})

错误回复:

invariant.js:39 Uncaught Invariant Violation: Objects are not valid as a React child (found: [object HTMLDivElement]). If you meant to render a collection of children, use an array instead or wrap the object using createFragment(object) from the React add-ons.

P.S。还尝试在createFragment()中包装blockNode但没有好的

0 个答案:

没有答案