小程序封装接口请求

1. 安装 wechat-http

npm install wechat-http

2. 创建 `http.js` 文件

// utils/http.js
import WechatHttp from 'wechat-http';
import { handleBusinessError } from './errorHandling'; // 引入你自定义的业务错误处理函数

// 初始化 WechatHttp 实例
const http = new WechatHttp({
  baseURL: 'https://api.example.com', // 设置基础URL
  timeout: 10000, // 请求超时时间
});

// 请求拦截器
http.interceptors.request.use(config => {
  // 在请求发送之前做一些处理,比如添加认证token
  const token = wx.getStorageSync('token');
  if (token) {
    config.headers['Authorization'] = `Bearer ${token}`;
  }
  return config;
}, error => {
  // 处理请求错误
  return

你可能感兴趣的:(微信小程序,微信小程序,前端)