最近,我开始使用reactjs
连同backbonejs
路由器来构建应用程序。
我通常requirejs
用于依赖和代码管理。但是,当我尝试包含包含jsx
语法的文件时会出现问题。
这是我目前所拥有的router.js
:
define(["backbone", "react"], function(Backbone, React) {
var IndexComponent = React.createClass({
render : function() {
return (
<div>
Some Stuff goes here
</div>
);
}
});
return Backbone.Router.extend({
routes : {
"": "index"
},
index : function() {
React.renderComponent(<IndexComponent />, document.getElementById('index'));
}
});
});
我如何将 IndexComponent 放在它自己的文件中并在这个文件中调用它?我尝试了通常的方法(与我在主干和react中使用的方法相同)但由于jsx
语法而出错。