yapi/client/reducer/middleware/messageMiddleware.js

11 lines
383 B
JavaScript
Raw Normal View History

2017-08-08 15:41:07 +08:00
import { message } from 'antd';
export default () => next => action => {
if (action.error) {
2017-08-08 15:41:07 +08:00
message.error((action.payload && action.payload.message) || '服务器错误');
2017-08-15 12:08:59 +08:00
} else if (action.payload && action.payload.data && action.payload.data.errcode && action.payload.data.errcode !== 40011) {
2017-08-08 15:41:07 +08:00
message.error(action.payload.data.errmsg);
}
return next(action);
};