我想在静态HTML页面的div中添加一个React组件。我这样做不是将整个页面转换为React,因为我只需要在我的网页的某些部分使用React。我按照https://reactjs.org/docs/add-react-to-a-website.html上的说明进行操作。我的问题是:
这样做可以吗,还是建议我完全在React中实现我的网站?
我做了上述页面告诉我的内容,但是当我在浏览器上显示它时(我的IDE是WebStorm),我使用React的部分并未实现。是否有必须运行的特定脚本(例如使用React框架时的yarn start)才能进行编译?
Dehan de Cro.. 6
看看这个最小的例子。您需要包含3个脚本
react.development.js(react库)
react-dom.development.js(与lib进行交互的dom)
babel.min.js(将React JSX转换为与浏览器兼容的JS)
Hello World
Note: this is a great way to try React but it's not suitable for production. It slowly compiles JSX with Babel in the browser and uses a large development build of React.
Read this section for a production-ready setup with JSX:
https://reactjs.org/docs/add-react-to-a-website.html#add-jsx-to-a-project
In a larger project, you can use an integrated toolchain that
includes JSX instead:
https://reactjs.org/docs/create-a-new-react-app.html
You can also use React without JSX, in which case you can remove Babel: https://reactjs.org/docs/react-without-jsx.html
SOURCE : https://raw.githubusercontent.com/reactjs/reactjs.org/master/static/html/single-file-example.html
看看这个最小的例子。您需要包含3个脚本
react.development.js(react库)
react-dom.development.js(与lib进行交互的dom)
babel.min.js(将React JSX转换为与浏览器兼容的JS)
Hello World