Vue中的AJAX请求
|
|
- http请求报文
|
|
- http响应报文
|
|
- 请求报文和响应报文配图
3.1 vue-resource
|
|
- vue-resource GitHub 地址:https://github.com/pagekit/vue-resource
vue-resource Http请求api参考(主要看这个):https://github.com/pagekit/vue-resource/blob/master/docs/http.md
vue结合vue-resource写法步骤
|
|
- vue-resource get请求
|
|
实例
123456789101112131415161718192021222324252627<div id='#app'> <button @click='getData'> get请求 <button> {{ msg | json }}</div><script>//创建根实例var vm = new Vue({ //挂载 el:'#app', data:{ msg:[] }, methods:{ getData:function(){ //发起请求 var url = 'http://182.254.146.100:8899/api/getnewslist'; this.$http.get(url).then( function(response){ this.msg = response.body.message } ) } }})</script>
- vue-resource post请求
|
|
|
|
- vue-resource jsonp请求
|
|
实例
|
|