我在使用react和martyjs创建组件时遇到问题。我确定这是一个错字或其他东西,但我似乎无法找到它。虽然我在组件中有一个状态mixin,但是状态没有被填充,并且看起来看起来并不像在mixin中调用了getState。
Mixin.es6
var StateMixin = Marty.createStateMixin({
listenTo: VideoStore,
getState: function() {
return {
items: VideoStore.list(),
currentItem: VideoStore.select(),
}
}
});
State.es6
var VideoStore = Marty.createStore({
displayName: "Store",
handlers: {
list: Events.List,
render: Events.Render
},
getInitialState: function(){
return { };
},
list: function(){
return this.fetch({
id: 'list',
locally: function(){
if(this.hasAlreadyFetched('list') )
return this.state.items;
},
remotely: function(){
return DissolveStateSource.list();
}
});
},
select: function(){},
render: function(){}
});
Component.es6
$( ()=>
React.render(
<VideosTable/>,
$("#container")[0]
));
var VideosTable = React.createClass(
{
mixins: StateMixin,
render: function() {
var body = this.state.list.when({ //state is null here
pending: function(){
return <span className="ball"></span>;
},
failed: function(error){
return <div className="error">error.message</div>;
},
done: function(videos){
return <div>Videos</div>;
}
});
return <h2>hello</h2>;
}
});
知道我做错了吗?
编辑:我在这里添加了一个js bin的东西
答案 0 :(得分:1)
看起来像Mixin.es6
中的拼写错误。
将getState
更改为getInitialState
。
此外,在Component.es6
:
将mixins: StateMixin
更改为mixins: [StateMixin]
。
答案 1 :(得分:0)
问题最终是包含JavaScript文件的顺序不正确。交换一些修复问题。
答案 2 :(得分:0)
你正在使用react v0.1.13.0
这是使用'construct'初始化状态的新方法
constructor(props) {
super(props);
this.state = {count: props.initialCount};
}
https://facebook.github.io/react/blog/2015/01/27/react-v0.13.0-beta-1.html