【uniapp】request请求函数封装,token、成功、失败等

1、封装http.ts

javascript 复制代码
//utils--->http.ts

/**
 * 添加拦截器
 *  拦截request请求
 *  拦截uploadFile文件上传
 *
 * TODO
 *  1、非http开头需要拼接地址
 *  2、请求超时
 *  3、添加小程序端请求头标识
 *  4、添加token请求头标识
 */
import { useMemberStore } from '@/stores/index'
const memberStore = useMemberStore()

//实际项目种的baseUrl是根据环境变量来获取的
const baseUrl = 'https://xx/xx/xx'

const httpInterceptor = {
  invoke(args: UniApp.RequestOptions) {
    // 拦截前触发,拼接url
    if (!args.url.startsWith('http')) {
      args.url = baseUrl + args.url
    }

    //请求超时时间,默认60s
    args.timeout = 10000

    //添加小程序请求头标志
    args.header = {
      ...args.header,
      'source-client': 'miniapp',
    }

    //添加token
    const token = memberStore.profile?.token
    if (token) {
      args.header.Authorization = token
    }
  },
}
// 添加拦截器
uni.addInterceptor('request', httpInterceptor)
uni.addInterceptor('uploadFile', httpInterceptor)

//定义泛型,接口返回的数据结构
interface Data<T> {
  code: string
  msg: string
  result: T
}
export const http = <T>(options: UniApp.RequestOptions) => {
  return new Promise<Data<T>>((resolve, reject) => {
    uni.request({
      ...options,
      // 响应成功
      success(res) {
        if (res.statusCode >= 200 && res.statusCode < 300) {
          resolve(res.data as Data<T>)
        } else if (res.statusCode === 401) {
          //401错误,清理用户信息,跳转登录页,调用reject
          memberStore.clearProfile()
          uni.navigateTo({ url: '/pages/login/login' })
          reject(res)
        } else {
          //通用错误,调用reject
          uni.showToast({
            title: (res.data as Data<T>).msg || '请求错误',
            icon: 'none',
          })
          reject(res)
        }
      },
      fail(err) {
        //响应失败,网络错误,调用reject
        uni.showToast({
          title: '网络错误,换个网络试试',
          icon: 'none',
        })
        reject(err)
      },
    })
  })
}

2、封装api

javascript 复制代码
//api--->my.ts
import { http } from '@/utils/http'

export const getBanner = (data: any) => {
  return http<string[]>({
    url: '/xx/xx',
    method: 'GET',
    data: data,
  })
}

3、使用封装好的api

javascript 复制代码
<script setup lang="ts">
import { getBanner } from '@/api/my'

const getData = async () => {
  const res = await getBanner({})
  console.log(1111, res)
}
</script>
相关推荐
陈不知代码7 小时前
uniapp创建vue3+ts+pinia+sass项目
前端·uni-app·sass
源码_V_saaskw7 小时前
JAVA图文短视频交友+自营商城系统源码支持小程序+Android+IOS+H5
java·微信小程序·小程序·uni-app·音视频·交友
996幸存者12 小时前
uni-app区域选择、支持静态、动态数据
微信小程序·uni-app
ᥬ 小月亮13 小时前
Uniapp编写微信小程序,绘制动态圆环进度条
微信小程序·小程序·uni-app
耶啵奶膘17 小时前
uniapp+vue3——通知栏标题纵向滚动切换
uni-app
The_era_achievs_hero20 小时前
UniappDay03
vue.js·微信小程序·uni-app
游戏开发爱好者82 天前
没有 Mac,如何上架 iOS App?多项目复用与流程标准化实战分享
android·ios·小程序·https·uni-app·iphone·webview
Python大数据分析2 天前
uniapp之微信小程序标题对其右上角按钮胶囊
微信小程序·小程序·uni-app
一只一只妖2 天前
uniapp小程序上传图片并压缩
小程序·uni-app
顽疲2 天前
从零用java实现 小红书 springboot vue uniapp(14) 集成阿里云短信验证码
java·vue.js·spring boot·阿里云·uni-app