【微信小程序】uni-app 配置网络请求
// 按需导入 $http 对象
import { $http } from '@escook/request-miniprogram'
// 将按需导入的 $http 挂载到 wx *对象之上,方便全局调用
wx.$http = $http
// 在 uni-app 项目中,可以把 $http 挂载到 uni *对象之上,方便全局调用
uni.$http = $http
//配置请求根路径
$http.baseUrl='https://www.uinav.com'
//请求开始之前做一些事情
$http.beforeRequest = function (options) {
uni.showLoading({
title: '数据加载中...',
})
}
//请求完成之后做一些事情
$http.afterRequest = function () {
uni.hideLoading()
}