是否可以从不属于 React 组件的 JavaScript 对象调度 redux 函数?
通常当我想调度一个动作时,我会执行以下操作:
我将调度函数映射到组件的 props:
const mapDispatchToProps = dispatch => {
return {
autoCheckState: () => dispatch(actions.authCheckState()),
}
}
然后我可以像这样调用调度函数:
async componentDidMount() {
await this.props.autoCheckState();
this.setState({
checking:false
})
}
但是,现在我想从我的公理拦截器对象中调用调度函数,并且它们没有"道具"
这是我设想的使用方式,但当然它不起作用:
axiosInstance.interceptors.response.use(
response => {
return response
},error => {
######## bunch of code that is not relevant ##########
this.props.updateTokens(response.data.access,refreshToken) #<--- how i would call it if i based it off the first example
######## bunch of code that is not relevant ##########
return Promise.reject(error);
}
);
const mapDispatchToProps = dispatch => { ##<--- maping the dispatch to the 'props'
return {
updateTokens: () => dispatch(actions.authSuccess())
}
}
export default connect(mapStateToProps,mapDispatchToProps)(axiosInstance);
当然,上面会给我一个错误,即这没有定义,因为它不是一个类。我可以知道在这种情况下使用 redux 的正确方法吗?
您可以使用 store.dispatch 从组件或操作创建者外部调度操作
import store from '/path/to/store';
axiosInstance.interceptors.response.use(
response => {
return response
},error => {
store.dispatch(actions.authSuccess(response.data.access,refreshToken));
return Promise.reject(error);
}
);