redux-async-connect 防止每次改變都去進行異步加載

https://github.com/Rezonans/redux-async-connect/issues/57git

解決方案很簡單。。。。github

加一個判斷。。。redux

@asyncConnect([{
  key: 'config',
  promise: (options) => {
    const state = options.store.getState();

    if (!state.config) {
       return options.helpers.client.get('config');
    }

  },
}])
相關文章
相關標籤/搜索