【微信小程序】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() }
上一篇:PgSQL技术内幕 - psql与服务端连接与交互机制-客户端如何连接


下一篇:计算机网络(3) 字节顺序:网络字节序与IPv4-低字节保存在内存低地址,高字节保存在内存高地址。