Vue三种请求方式

~~




    
    Vue-Resource基本使用
    
    
    


var vm = new Vue({
    el:"#vue-resoure",
    data:{},
    methods: {
        getInfo:function () {
            //发出get请求
            this.$http.get("http://vue.studyit.io/api/getlunbo").then(function (res) {
                console.log(res.body);
            })
        },
        postInfo:function () {
            //发出post请求
            this.$http.post("http://vue.studyit.io/api/getlunbo",{id:1,name:'ypj'},{emulateJSON:true}).then(res=>{
                console.log(res.body);
            })
        },
        jsonpInfo:function () {
            this.$http.jsonp("http://vue.studyit.io/api/getlunbo").then(res=>{
                console.log(res.body);
            })
        }
    }
});

你可能感兴趣的:(Vue)