码迷,mamicode.com
首页 > 其他好文 > 详细

react+mobx 编写 withStoreHistory 装饰器

时间:2018-12-09 12:09:13      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:...   one   observer   装饰器   调用   xtend   输入   push   ext   

主要作用是向store里面注入一个history对象,方便story里面的函数调用

function withStoreHistory(storeName) {
  if (!storeName) return console.error(`必须输入一个查询数据的store`);
  return function(Target) {
    class WithStoreHistory extends Component {
      componentDidMount() {
        const { history } = this.props;
        const store = this.props[storeName];
        store.history = history;
      }
      render() {
        return <Target {...this.props} />;
      }
    }
    return WithStoreHistory;
  };
}

使用

需要在inject调用后才能获取到store的数据,所以写在inject下面

const MERCHANTSTORE = "merchantStore";

@inject(MERCHANTSTORE)
@withStoreHistory(MERCHANTSTORE)
@observer
class BusinessEntrance extends Component {
  render() {
    return (
      <div>...</div>
    );
  }
}

函数中使用

  @action.bound
  handleSettingData() {
    this.history.push("/merchants_settled");
  }

react+mobx 编写 withStoreHistory 装饰器

标签:...   one   observer   装饰器   调用   xtend   输入   push   ext   

原文地址:https://www.cnblogs.com/ajanuw/p/10090243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!