123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // 根域名
- var baseUrl = 'http://121.28.24.104:13898/app/';
- // var baseUrl = 'http://192.168.1.59:8080';
- // var baseUrl = 'http://192.168.1.52:8080';
-
- module.exports = (vm) => {
- // 初始化请求配置:config 为默认全局配置
- uni.$u.http.setConfig((config) => {
- config.baseURL = baseUrl; /* 根域名 */
- // 配置请求头信息
- config.header = {
- // 'content-type': 'application/x-www-form-urlencoded;charset=UTF-8',
- // 'content-type': 'application/json;charset=utf-8',
- };
- config.method = 'GET'; //支持post、get、put、delete
- config.dataType = 'json'; // 设置为json,返回后会对数据进行一次JSON.parse()
- config.timeout = 60000;
- return config
- })
- // 请求拦截
- uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作
- // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
- config.data = config.data || {};
- config.header['content-Type']=config.header['content-Type']==undefined?'application/json;charset=utf-8':config.header['content-Type']
- // 设置token
- // const token = getApp().globalData.token || '';
- const token = uni.getStorageSync('token') || '';
- config.header['Authorization'] ='Bearer ' + token
- // 设置设备端类型
- // config.header['os'] = uni.$u.os() || '';
-
- return config;
- }, config => { // 可使用async await 做异步操作
- return Promise.reject(config)
- })
-
- // 响应拦截
- uni.$u.http.interceptors.response.use((response) => {
- /* 对响应成功做点什么 可使用async await 做异步操作*/
- const res = response.data;
- // console.log(res)`
-
- // res为服务端返回值,可能有code,result等字段
- if (res.code == 200) {
- return res;
- } else if (res.code == 400) {
- uni.$u.toast(res.msg)
- return false;
- } else if (res.code == 401) {
- // 401为token失效
- // uni.setStorageSync('token', ''); // 缓存token
- uni.$u.toast(res.msg)
- // setTimeout(() => {
- // vm.$u.route('/pages/login/login')
- uni.clearStorageSync()
- uni.reLaunch({
- url:"/pages/login/login"
- })
- // }, 1500)
- return false;
- } else if (res.code == 405) {
- // 405为token为空
- return false;
- } else if (res.code == 1) {
- uni.$u.toast(res.msg)
- return false;
- } else if (res.code == undefined) {
- return res;
- } else {
- // 如果需要catch返回,则进行reject
- return Promise.reject(res)
- }
- }, (response) => {
- // 对响应错误做点什么 (statusCode !== 200)
- uni.showToast({
- title:"网络异常,请稍后重试",
- icon:"none"
- })
- return Promise.reject(response)
- })
- }
|