作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 HTML 页面中引用了 JSX 文件,但该页面没有显示任何内容。
HTML (Index.html)
<!DOCTYPE html>
<html lang="en">
<head>
<title>My First React Example</title>
</head>
<body>
<div id="container"></div>
<script src="https://***/react-15.0.0.js"></script>
<script src="https://***/react-dom-15.0.0.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
JSX(脚本.js)
var CommentBox = React.createClass({
render: function() {
return (
<div className="commentBox">
Hello, world! I am a CommentBox.
</div>
);
}
});
ReactDOM.render(
<CommentBox />,
document.getElementById('container')
);
我已经尝试将文件扩展名更改为 .jsx/.js,但仍然没有成功。
最佳答案
使用 babel-standalone 来转换你的 JSX 代码。在脚本类型中也使用 text/babel
<!DOCTYPE html>
<html lang="en">
<head>
<title>My First React Example</title>
</head>
<body>
<div id="container"></div>
<script src="https://***/react-15.0.0.js"></script>
<script src="https://***/react-dom-15.0.0.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script type="text/babel" src="script.js"></script>
</body>
</html>
脚本.js
var CommentBox = React.createClass({
render: function() {
return (
<div className="commentBox">
Hello, world! I am a CommentBox.
</div>
);
}
});
ReactDOM.render(
<CommentBox />,
document.getElementById('container')
);
但是我会推荐你使用 webpack
来使用 babel-loader 转译你的代码
关于reactjs - 如何将 JSX 文件引用到 HTML 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44075762/
我是一名优秀的程序员,十分优秀!