将React Web集成到现有的单页Web应用程序中(逐步)

时间:2017-07-22 14:54:06

标签: reactjs

尝试将现有的单页应用转换为React网络应用增量,首先使用material-ui Snackbar,即http://www.material-ui.com/#/components/snackbar

假设现有应用程序位于single-app.js

尝试添加Snackbar react app,并在服务器端使用Babel成功地将其转换为react.app.js 下面是内部react.app.js(在编译之前)



    import React from 'react';
    import {render} from 'react-dom';
    import injectTapEventPlugin from 'react-tap-event-plugin';
    import Snackbar from 'material-ui/Snackbar';
    render(<Snackbar />, document.getElementById('react_container'));
&#13;
&#13;
&#13;

我在single-app.js

中加入了react-app.jsindex.html

如何在Snackbarreact-app.jssingle-app.js内的脚本标记(javascript / babel)中打开index.html编码,以便显示消息?

非常感谢。

0 个答案:

没有答案