Minified React error #60
根据React官方的报错,报错全文是:
The full text of the error you just encountered is:
只能设置子节点
或者dangerouslySetInnerHTML属性
之一
**Can only set one of `children` or `props.dangerouslySetInnerHTML`.**
解决方法其实也很简单,就是如果使用了dangerouslySetInnerHTML
属性,不能再html标签中写任何东西,包括空格和注释,都不行。
参考:
reactjs - Can only set one of children
or props.dangerouslySetInnerHTML
- Stack Overflow