我想得到 ReactDOM.findDOMNode(this) 的孩子,这样我就可以根据 refs 设置样式。具体显示 none 一些 refs 和 yes 其他。
我以为我可以
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.
PS 也尝试在 createFragment() 中包装 blockNode 但不好