1.0.5 • Published 5 years ago

uni-app-http v1.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

uni-app-http

二次封装uni-app的uni.request 网络请求接口

使用

  • 安装
npm install uni-app-http
  • 在main.js中引用
import http from 'uni-app-http' 
http.setHost('you host')
Vue.prototype.$http = http
  • 运用
async onLoad() {
  const end = this.$http.getHost()
  this.$http.get('/xxx').then((e) => {console.log(e, 22)})
  const data = await this.$http.get('/xxx')
} 

方法说明

post

  • url
  • data
  • contentType

get

  • url
  • data

setHost

  • url

getHost

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago