我使用Flux的altjs实现从外部api获取数据。 api调用在动作中工作正常,返回到存储,然后在我的组件中触发onChange()函数。我尝试从商店的当前状态设置状态:
import React, { Component, PropTypes } from 'react';
import AppStore from '../../stores/AppStore';
import AppActions from '../../actions/AppActions';
const title = 'Contact Us';
class ContactPage extends Component {
constructor(props) {
super(props);
this.state = AppStore.getState();
}
static contextTypes = {
onSetTitle: PropTypes.func.isRequired,
};
componentWillMount() {
AppActions.getData();
this.context.onSetTitle(title);
AppStore.listen(this.onChange)
}
componentWillUnmount() {
AppStore.unlisten(this.onChange)
}
onChange() {
this.state = AppStore.getState();
}
render() {
return (
<div className={s.root}>
<div className={s.container}>
<h1>{title}</h1>
<span>{this.state.data.id}</span>
</div>
</div>
);
}
}
export default ContactPage;
我收到错误&#34;无法设置属性&#39;州&#39;未定义&#34;
我的商店看起来像这样:
import alt from '../alt';
import AppActions from '../actions/AppActions';
class AppStore {
constructor() {
this.bindActions(AppActions);
this.loading = false;
this.data = {};
this.error = null
}
onGetDataSuccess(data) {
this.data = data;
}
}
export default alt.createStore(AppStore, 'AppStore');
this.state = AppStore.getState()不会在构造函数中抛出任何错误。它只是被抛入onChange()函数中。我应该在这里设置状态的正确方法是什么?
答案 0 :(得分:1)
当您使用ES6类时,您需要显式绑定所有回调,因为没有自动绑定。可能会让您感到困惑,因为当您将React.createClass
,react will automatically bind所有回调用于组件时,这就是为什么您只能将this.onChange
作为回调传递。
例如
componentWillMount() {
...
AppStore.listen(this.onChange.bind(this));
}