更新记录
1.0(2020-11-02) 下载此版本
第一次上传
平台兼容性
axios请求说明
一、使用
1、将common->lib->request.js文件复制到项目中
2、在main.js文件中引入requiest.js
如下:
//引入request
import $H from './common/lib/request.js'
Vue.prototype.$H = $H
3、在pages文件中直接使用
如下:
async submit(){
const res = await this.$H.post('/login',this.loginForm)
//状态存储
this.login(res)
uni.switchTab({//跳转
url:'/pages/tabBar/home/index'
})
}