前言
正文
一、 link 跳转
1 | import { Link } from 'dva/router'; |
二、点击路由跳转 在effects 里面使用yield put
1 | <h2 onClick={testClick}>test</h2> |
effects 有三个参数:
Effects
put 用于触发 action 。1
yield put({ type: 'todos/add', payload: 'Learn Dva' });
call 用于调用异步逻辑,支持 promise 。1
const result = yield call(fetch, '/todos');
select 用于从 state 里获取数据。1
const todos = yield select(state => state.todos);
基于 action 进行页面跳转1
2
3
4
5
6
7
8
9
10
11
12
13
14
15import { routerRedux } from 'dva/router';
// Inside Effects
yield put(routerRedux.push('/logout'));
// Outside Effects
dispatch(routerRedux.push('/logout'));
// With query
routerRedux.push({
pathname: '/logout',
query: {
page: 2,
},
});
除 push(location) 外还有更多方法,详见这里
示例如下:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55state: {
isLogin: false,
loginfail:false,
},
subscriptions: {
setup({ dispatch, history }) {
history.listen(location => {
if (location.pathname.includes('app')) {
dispatch({
type: 'loginhook',
});
}
});
},
},
effects: {
* login({ payload },{call, put}) {
const { data } = yield call(login, payload);
if (data && data.success) {
yield put({
type: 'checklogin',
payload:{
isLogin:true,
}
});
yield put(routerRedux.push('/app/users'));
}else{
yield put({
type: 'loginfail',
payload:{
loginfail:true,
}
});
}
},
* loginhook({ payload },{select,call, put}){
const isLogin = yield select(({session}) => session.isLogin);
console.log('logincheck',isLogin);
if(isLogin === false){
yield put((routerRedux.push('/login')));
}
},
},
reducers: {
checklogin(state,action) {
return {...state,isLogin:action.payload.isLogin };
},
loginfail(state,action) {
return {...state, loginfail:action.payload.loginfail};
},
}
小结
关于作者
** 珠峰
WEB开发与管理相结合,注重技术与应用结合。现居上海。