亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序怎么制作api攔截器

發布時間:2022-03-09 09:57:36 來源:億速云 閱讀:379 作者:iii 欄目:開發技術

這篇“微信小程序怎么制作api攔截器 ”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“微信小程序怎么制作api攔截器 ”文章吧。

安裝

npm install wxapp-api-interceptors --save

使用

mpvue等項目
import wxApiInterceptors from 'wxapp-api-interceptors';

wxApiInterceptors(); // 必須在調用小程序api之前調用

原生小程序項目

下載該項目,解壓移動文件夾dist里wxApiInterceptors.js和runtime.js文件到你自己的項目,詳見示例。

const wxApiInterceptors = require('./wxApiInterceptors');

wxApiInterceptors(); // 必須在調用小程序api之前調用

小程序api調用

不必傳success、complete和fail參數。

cdn.github.com/images/icons/emoji/unicode/26a0.png">??注意:原生小程序項目不支持Promise.finally

函數式異步調用方式:

wx.showLoading({title: '登錄中...'})
    .then(wx.login)
    .then(data => wx.request.post('/login', {data}))
    .then(() => wx.showToast({title: '登錄成功'}))
    .catch(() => wx.showToast({title: '登錄失敗'}))
    .finally(wx.hideLoading);

也兼容原生的調用方式(不便維護):
wx.showLoading({
    title: '登錄中...',
    success: () => {
        wx.login({
            success: (data) => {
                wx.request({
                    url: '/login',
                    data,
                    success: () => wx.showToast({title: '登錄成功'}),
                    fail: () => wx.showToast({title: '登錄失敗'}),
                    complete: wx.hideLoading,
                });
            },
        });
    },
});

自定義攔截器

使用方法及參數:wxApiInterceptors({[api]: {[request](params):params, [response](res):res}})

比如攔截wx.showModal的confirmColor默認值為red,調用成功后并攔截調用成功返回的結果。

wxApiInterceptors({
    showModal: {
        request(params) {
            if (params.confirmColor === undefined) {
                params.confirmColor = 'red';
            }
            return params;
        },
        response(res) {
            res = '調用成功';
            return res;
        },
    }
});

wx.showModal({title: '測試'})
    .then(console.log);
// 控制的輸出:調用成功

默認攔截了request api,封裝成了和axios差不多的使用方式

調用wx.request[method](url, [config])發送axios化的請求。

默認GET請求

wx.request('https://test.com/banner')
    .then(({data}) => {
        console.log(data);
    })
其他請求方式
wx.request.post('https://test.com', {data: {userName: 'test'}})
    .then(({data}) => {
        console.log(data);
    })
當然也可以再繼續攔截request api

比如設置request api默認的host:

wxApiInterceptors({
    request: {
        request(params) {
            const host = 'https://test.com'
            if (!/^(http|\/\/)/.test(params.url)) {
                params.url = host + params.url;
            }
            return params;
        },
    },
});

甚至可以攔截自己的業務狀態碼:

wxApiInterceptors({
    request: {
        response(res) {
            const {data: {code}} = res;
            // 如果data里的code等于-1就響應為失敗
            if (code === -1) {
                return Promise.reject(res);
            }
            return res;
        },
    },
});
強大的async攔截器

比如調用request api的時候都在header里帶上本地儲存的token,沒有的話從服務器獲取:

wxApiInterceptors({
    request: {
        async request(params) {
            if (params.header === undefined) {
                params.header = {};
            }
            let token = wx.getStorageSync('token');
            if (!token) {
                ({data: token} = await wx.request('/getToken'));
                wx.setStorageSync('token', token);
            }
            params.header.token = token;
            return params;
        },
    },
});

以上就是關于“微信小程序怎么制作api攔截器 ”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平乐县| 樟树市| 太保市| 彩票| 弥勒县| 来安县| 陆丰市| 获嘉县| 定边县| 广州市| 琼中| 治县。| 山阴县| 曲靖市| 井陉县| 犍为县| 枞阳县| 长春市| 石嘴山市| 霍山县| 娄底市| 革吉县| 大悟县| 子洲县| 大理市| 陆良县| 衡阳市| 扶沟县| 寻乌县| 东乡县| 慈利县| 昌乐县| 饶平县| 天长市| 久治县| 凭祥市| 濮阳市| 大厂| 东阳市| 义马市| 新乡县|