我只是想知道是否有任何方法我可以在我的index.html
多個<div id = "x" /> <div id = "y" />
「繪製」與REACT,我的意思是..我有我所有的網站index.html
與我所有的模板,所以我只需要使用REACT上細節部分...React |多個渲染
我想這我沒有工作
HTML
<div id="test" />
<div id="app" />
<script src="public/bundle.js" charset="utf-8"></script>
JSX
import React from 'react';
import {render} from 'react-dom';
class App extends React.Component {
render() {
return (<h1>App</h1>);
}
}
class Test extends React.Component {
render() {
return (<h1>Test</h1>);
}
}
render(<App/>, document.getElementById('app'));
render(<Test/>, document.getElementById('test'));
然後當我加載頁面只打印<h1>Test</h1>
...爲什麼呢?
嘗試關閉div標籤。 Div不是自動關閉的。 – jmargolisvt
我試過了,但沒事! – Gil
你在使用React的開發版嗎?如果是這樣,你應該在控制檯中獲得一些有用的錯誤。 – jmargolisvt