91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

潮州市| 财经| 安阳市| 大洼县| 调兵山市| 靖安县| 施甸县| 永登县| 瑞金市| 鹰潭市| 乌什县| 镇雄县| 莱西市| 扶余县| 英吉沙县| 广水市| 玉龙| 平定县| 铜鼓县| 永德县| 阿克陶县| 抚松县| 新密市| 武隆县| 永靖县| 葵青区| 莫力| 峨边| 山西省| 文化| 江达县| 电白县| 五华县| 宁化县| 和林格尔县| 四川省| 阿尔山市| 时尚| 金华市| 萨迦县| 建始县|