试试这个
export const showSignUpView = () => (dispatch) => { dispatch({type: "GO_TO_SIGNUP_PAGE"}) }
这与非箭头功能方式相同(记录方式如下) redux-thunk 的文件)
redux-thunk
export function showSignUpView() { return (dispatch) => { dispatch({type: "GO_TO_SIGNUP_PAGE"}) } }
的 边注 强>
在屏幕之间导航(如果我没有弄错,你正在使用 react-navigation ),我觉得这样做更棒 react-navigation 的航海家。结帐 他们的文档中的身份验证流程
react-navigation