React 中怎样渲染一个已经存在的 Dom Element ?

render: function() { return ( \u0026lt;img src=https://www.zhihu.com/api/v4/questions/47187565/{/u0026#39;/u0026#39;} /u0026gt; );}如果要写 img 就这么写,返回的 virtual element,还没到 actual DOM 上,不要用 new Image,不然你用 react 做什么呢。
■网友
不要这么干。render() 返回的是 react element ,也就是 js plain object 构成的树状结构,即使你在 jsx 中写 \u0026lt;div\u0026gt;、 \u0026lt;img\u0026gt;,实际上得到的还是 js plain object,而非 DOM element。不要在 react element tree 中插入 dom element instance 。
■网友
根据React官方文档Use React with Other Libraries 给出的提示,可以在componentDidMount中对已挂载组件进行操作来满足问题中的需求。


    推荐阅读