給 axios 和 redux-axios-middleware 添加finally方法 的使用心得

最近公司讓用react寫一個釘釘的微應用APP 而後就只能去學了react, 以前一直用angular和vue, 因此異步請求用的都是jquery和axios, 想轉來轉去麻煩 就直接用了axios, 而後網上找了一下 竟然有axios的redux中間件vue

axios 實現finally方法

實現方式1 - q.js

一開始使用axios, 由於沒有finally方法,寫起來老是有點彆扭 因此引入了q.js 須要把請求都用Q.Promise封裝一遍,像這樣react

//定義
export function getUserInfo() {
    return Q.Promise((success, error) => {
        axios.post('[url]').then(function (data) {
            if (data.code == 200) {
                success(data.data)
            } else {
                error()
            }
        }).catch(function (err) {
            error()
        });
    })
}

//使用
getUserInfo()
    .then(()=>{
    })
    .catch(()=>{
    })
    .finally(()=>{
    })

實現方式2 - promise.prototype.finally

最後在看 axios的issues的時候無心間看到有人提問 能夠用這個庫 實現對es6promise的擴展 以後就很簡單了jquery

//只要引入這個模塊 使用下這個方法就搞定了
require('promise.prototype.finally').shim() 


//使用
axios.post('[url]')
    .then((data)=> {
    })
    .catch((err)=> {
    })
    .finally(()=> {
    })

redux-axios-middleware 實現finally方法

咱們作業務的時候確定會有 loading 這個變量,在請求前須要讓加載框出現,在完成後須要隱藏
不對redux-axios-middleware進行配置的話是這樣的,能夠看到 寫了2遍state.setIn(['obj', 'loading'], false);ios

case 'GET_CATEGORY_LIST':
    return state.setIn(['obj', 'loading'], true);
    break;
case 'GET_CATEGORY_LIST_SUCCESS':
    state = state.setIn(['obj', 'list'], fromJS(aciton.payload.data))
    return state.setIn(['obj', 'loading'], false);
    break;
case 'GET_CATEGORY_LIST_FAIL':
    return state.setIn(['obj', 'loading'], false);
    break;

對redux-axios-middleware進行配置

看了下源碼 他是有一個onComplete 方法能夠定義的,方式以下git

#axiosMiddlewareOptions.js
import { getActionTypes } from 'redux-axios-middleware/lib/getActionTypes'

export const returnRejectedPromiseOnError = true;

export const onComplete = ( { action, next, getState, dispatch }, actionOptions) => {
    const previousAction = action.meta.previousAction;
    const nextAction = {
        type: getActionTypes(previousAction, actionOptions)[0]+'_COMPLETE',
        meta: {
            previousAction: previousAction
        }
    };
    next(nextAction);
    return nextAction;
};
#store.js
import { createStore, compose, applyMiddleware } from 'redux'

import axios from 'axios';
import axiosMiddleware from 'redux-axios-middleware';
import * as axiosMiddlewareOptions from './common/axiosMiddlewareOptions'

const enhancers = compose(
    applyMiddleware(
        axiosMiddleware(axios, {...axiosMiddlewareOptions}), //axios 中間件
    ),
    window.devToolsExtension ? window.devToolsExtension() : f=>f
);

這樣配置完以後,axios中間件每次請求完 都會執行一個[type]_COMPLETE的action,上面的reducer能夠優化爲(若是爲錯誤不處理的話,通常都會在axios的interceptors裏作)es6

case 'GET_CATEGORY_LIST':
    return state.setIn(['obj', 'loading'], true);
    break;
case 'GET_CATEGORY_LIST_SUCCESS':
    return state.setIn(['obj', 'list'], fromJS(aciton.payload.data))
    break;
case 'GET_CATEGORY_LIST_COMPLETE':
    return state.setIn(['obj', 'loading'], false);
    break;

上面還有一個配置export const returnRejectedPromiseOnError = true;他的做用是讓axios中間件請求出錯的時候走catch方法,能夠是代碼結構更清晰。github

#redux-axios-middleware 源碼
return actionOptions.returnRejectedPromiseOnError ? Promise.reject(newAction) : newAction;

而後就可使用axios中間件請求更爽的寫業務代碼啦,上面說的是在 redux 中的數據,下面這個是如何更好控制在state中的數據,下面的3個方法實際上是axios.request()的方法,因爲咱們使用第2種方法給promise添加了finally方法,因此如今能夠這樣使用它redux

this.setState({ refreshing: true });
this.props.userHome()
    .then(()=>{
        
    })
    .catch(()=>{
    })
    .finally(()=>{
        this.setState({ refreshing: false });
    })

ok 搞完了axios

相關文章
相關標籤/搜索