我正在尝试使用本教程使ReactJS与rails一起使用。我收到此错误:
Uncaught ReferenceError: React is not defined
但是我可以在浏览器控制台中访问React对象,
我还按此处所述添加了public / dist / turbo-react.min.js,并且如本回答中所述,还在application.js中添加了一行,但是没有运气。此外,给出错误://= require components
var React = require('react')
Uncaught ReferenceError: require is not defined
谁能建议我解决该问题?
[EDIT 1]
供参考的源代码:
这是我的comments.js.jsx
文件:
var Comment = React.createClass({
render: function () {
return (
<div className="comment">
<h2 className="commentAuthor">
{this.props.author}
</h2>
{this.props.comment}
</div>
);
}
});
var ready = function () {
React.renderComponent(
<Comment author="Richard" comment="This is a comment "/>,
document.getElementById('comments')
);
};
$(document).ready(ready);
这是我的index.html.erb
:
<div id="comments"></div>