我有一个 react 组件在 react 中管理整个应用程序。看起来像:
var Page = React.createClass({
displayName: 'Page',
render: function() {
return (
React.DOM.div(null
/*, stuff here ..*/
)
);
}
});
和 html 看起来像
<body id="content"></body>
我把它渲染成:
React.renderComponent(Page(null), document.getElementById('content'));
但相反,我想对整个body
标签做出反应,因此没有多余的嵌套div
. 我怎样才能渲染这样的东西?