请求

2020-04-01  本文已影响0人  jasmine_6aa1

get请求:两个参数

getFor(){
         this.$http.get('http:vue.studyit.io/api/getlunbo').then(function(result){
            console.log(result.body)//这里一般用body
            })
        },

post请求:三个参数

postFor(){
 //通过post方法的第三个参数,{elementJSON:true}设置提交的内容类型 为普通表单数据格式
     this.$http.post('http:vue.studyit.io/api/getlunbo',{},{elementJSON:true}).then(function(result){
                console.log(result.body)
            })
        },

Jsonp请求:三个参数

JsonpFor(){
  this.$http.Jsonp('http:vue.studyit.io/api/getlunbo').then(function(result){
                console.log(result.body)
            })
        },
上一篇下一篇

猜你喜欢

热点阅读