componentWillUnmount() {
this.timer && clearTimeout(this.timer);
this.props.dispatch({type : 'USER_ALL_CLEAR'});
}
componentWillUnmount() {
this.timer && clearTimeout(this.timer);
this.props.userAction.clearAll();
}
那种优雅????
第二种。type 最好定义在一个地方,不然容易敲错。