引擎在我的node.js应用程序中替代EJS。无论如何,我从这里使用了这个例子:https://github.com/reactjs/express-react-views
var React = require('react');
var HelloMessage = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
module.exports = HelloMessage;
但是我收到此错误:[SyntaxError:D:\ Data \ ytko \ elbp \ views \ index.jsx:5 回归; ^ 意外的令牌&lt;]; 考虑到我逐字复制了这些内容,我对于最近发生的事情感到有些困惑。
谢谢