Vue接口请求

1.X版本使用Vue-resource

先引入Vue  后引入Vue-resource、

get 请求

getInfo(){

this.$http.get(“地址?参数”).then(res =>{})

}

post 请求

this.$http.post(“地址”,{参数对象},{emulateJSON:true}).then(res=>{})

//  第三个参数{emulateJSON:true}指定类型,如果是JSON不用写,,如果是其他需要写

2.X版本  使用axios

同样后引入axios

get请求:和vue-resource一样,吧this.$http.get换成axios.get,其他不变

post请求:如果是JSON格式,同理替换开头

如果是其他格式:

let  url = new  URLsearchParams()

url.append("type","free")   // 一次只能加一个,可加多次

axios.post(“地址” url 参数换成外面定义的).then(res =>{})

你可能感兴趣的:(大数据)