基于uview封装http请求

1.在项目下新建config文件夹

基于uview封装http请求_第1张图片

2.request.js文件内容

// 此vm参数为页面的实例,可以通过它引用vuex中的变量
module.exports = (vm) => {
    // 初始化请求配置
    uni.$u.http.setConfig((config) => {
        /* config 为默认全局配置*/
        config.baseURL = ''; /* 根域名 */
        config.timeout = 80000;
        return config
    })
    
    // 请求拦截
    uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作
        // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
        config.data = config.data || {}
        config.header['Content-Type'] = 'application/x-www-form-urlencoded'
        // 根据custom参数中配置的是否需要token,添加对应的请求头
        // 根据custom参数中配置的是否需要token,添加对应的请求头
        if (uni.getStorageSync('storage_key')) {
            // 可以在此通过vm引用vuex中的变量,具体值在vm.$store.state中
            config.header.token = uni.getStorageSync('storage_key').token.token
        }
        return config 
    }, config => { // 可使用async await 做异步操作
        return Promise.reject(config)
    })
    
    // 响应拦截
    uni.$u.http.interceptors.response.use((response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/
        const data = response.data
        console.log(response)

        // 自定义参数
        // const custom = response.config?.custom
        if (data.code != 1) {
            // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
            if (data.msg) {
                uni.$u.toast(data.msg)
            }      
        }
        // return data.data === undefined ? {} : data.data
        return  data === undefined ? {} :data
    }, (response) => { 
        // 对响应错误做点什么 (statusCode !== 200)
        return Promise.reject(response)
    })
}


3.api.js文件内容

const http = uni.$u.http
import qs from 'qs'
// 首页
//获取轮播图数据
export const getLunBo = (data) => http.get('v1/home/swiperdata', qs.stringify(data))

//历史订单查询
export const orderSearch = (params, config = {}) => http.post('v1/my/orders/all', qs.stringify(params), config)

4.在main.js文件中引入

import App from './App'

// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
import uView from 'uview-ui'
Vue.use(uView)

App.mpType = 'app'
const app = new Vue({
    ...App
})
// 引入请求封装,将app参数传递到配置中
require('@/config/request.js')(app)
app.$mount()

5.使用

6.如果对你有用就点个赞吧


 

你可能感兴趣的:(http,网络协议,网络,ajax,封装)