我正在使用Wix React Native Navigation和Redux Thunk。在异步操作之后导航的正确方法是什么。我尝试做类似的事情:
// actionCreators.js
export const createUser = (data) => {
return (dispatch) => {
axios.post('api/users', data)
.then(() => {
// Navigate to other screen.
}
}
}