中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

微信小程序怎么制作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

溆浦县| 海城市| 若尔盖县| 奉贤区| 玉树县| 岑巩县| 和林格尔县| 沁源县| 长沙市| 陆良县| 泗阳县| 新乡县| 武功县| 林口县| 山东省| 壤塘县| 惠水县| 芒康县| 裕民县| 渭源县| 江城| 子长县| 拉萨市| 西充县| 蒲城县| 华蓥市| 绥滨县| 宁河县| 长顺县| 成武县| 娱乐| 宣恩县| 女性| 镇平县| 民乐县| 武冈市| 白河县| 奉贤区| 广丰县| 宁明县| 申扎县|