vue与后台交互数据(vue-resource)

需要引入库:vue-resource

 

1.获取普通文本数据 




    
    测试 vue-resource
    
    
    


vue与后台交互数据(vue-resource)_第1张图片

2.get发送数据给后端 

this.$http.get('http://127.0.0.1:8080/VueStudy/test/getTest.action',{a:1,b:2}).then(function(res){
                            alert(res.body);
                        },function(res){
                            console.log(res.status);
                        });

3.post发送数据到后台

 //post方法
                       /* 如果Web服务器无法处理编码为application/json的请求,你可以启用emulateJSON选项。
                          启用该选项后,请求会以application/x-www-form-urlencoded作为MIME type,就像普通的HTML表单一样。*/
this.$http.post('http://127.0.0.1:8080/VueStudy/test/getTest.action',{a:1,b:2},{emulateJSON:true}).then(function(res){
                            alert(res.body);
                        },function(res){
                            console.log(res.status);
                        });

4.jsonp跨域

this.$http.jsonp('https://sug.so.360.cn/suggest',{word:'a'},{jsonp:'callback'}).then(function(res){
                            console.log(res.data);
                        },function(res){
                            console.log(res.status);
                        });

5.非简写

this.$http({
                            url:'http://127.0.0.1:8080/VueStudy/test/getTest.action',
                            method:'GET',
                           /!* emulateJSON:true,*!/
                            data:{'a':'gaoguo','b':'ceshiceshi','c':'123456','isTop':0},
                            /!*headers: {"X-Requested-With": "XMLHttpRequest"},*!/
                            emulateJSON: true
                        }).then(function(data){
                            //赋值给alllist数组,
                            //this.$set('alllist',data.data.knowledgeList)
                        })

 

你可能感兴趣的:(vue学习笔记)