时间:2021-05-25
单来说,vue-resource就像jQuery里的$.ajax,用来和后端交互数据的。可以放在created或者ready里面运行来获取或者更新数据...
vue-resource文档:https://github.com/vuejs/vue-resource/blob/master/docs/http.md
结合vue-router
data(){ return{ toplist:[], alllist:[] } }, //vue-router route:{ data({to}){ //并发请求,利用 Promise return Promise.all([ //简写 this.$http.get('http://192.168.30.235:9999/rest/knowledge/list',{'websiteId':2,'pageSize':5,'pageNo':1,'isTop':1}), //this.$http.get('http://192.168.30.235:9999/rest/knowledge/list',{'websiteId':2,'pageSize':20,'pageNo':1,'isTop':0}) //不简写 this.$http({ method:'GET', url:'http://192.168.30.235:9999/rest/knowledge/list', data:{'websiteId':2,'pageSize':20,'pageNo':1,'isTop':0}, headers: {"X-Requested-With": "XMLHttpRequest"}, emulateJSON: true }) ]).then(function(data){//es5写法 return{ toplist:data[0].data.knowledgeList, alllist:data[1].data.knowledgeList } //es6写法 .then()部分 //.then(([toplist,alllist])=>({toplist,alllist})) },function(error){ //error }) } }在其他地方使用
ready(){ var that=this; var websiteid = 2, pagesize = 20, pageno =1; that.$http({ method:'GET', url:'http://192.168.30.235:9999/rest/knowledge/list', data:{'websiteId':websiteid,'pageSize':pagesize,'pageNo':pageno,'isTop':0} }).then(function(data){ //赋值给alllist数组, that.$set('alllist',data.data.knowledgeList) }) //简写 }若定义全部变量(在data()中定义),使用$get()获取
data(){ return{ toplist:[], alllist:[], websiteid:2, pagesize:20, pageno:1 } },ready(){ var that=this; that.$http({ method:'GET', url:'http://192.168.30.235:9999/rest/knowledge/list', //使用定义的全局变量 用$get()获取 data:{'websiteId':that.$get('websiteid'),'pageSize':that.$get('pagesize'),'pageNo':that.$get('pageno'),'isTop':0} }).then(function(data){ //赋值给alllist数组, that.$set('alllist',data.data.knowledgeList) },function(error){ //error }) }post方式同理
将数据绑定到dom上
<ul> <li v-for="item in alllist" v-if="item.istop == false"> <a v-link="{ name: 'getReceiptDetail',params:{knowledgeId: item.id }}"> <div class='fl know-info'> <!-- | limit 和 | timer是filter 在后续会说到--> <!--字段含义: --> <p class='font-normal nomal-height'>{{item.title | limit 30 }}</p> <p class='co9a9a9a' ><span style='margin-right: 1rem;'>{{item.viewTimes}}K</span><span>{{item.publishTime | timer }}</span></p> <!--viewTimes:有多少人查看 , publishTime:发布时间--> </div> <div class='fr know-img'> <img v-bind:src=item.coverImage /> </div> <div class='clearfix'></div> </a> </li></ul>在vue-validator中做post示例 , 将接口请求地址定义为全局详见VUEX
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
vue-resource是Vue提供的体格http请求插件,如同jQuery里的$.ajax,用来和后端交互数据的。在使用时,首先需要安装vue-resourc
本文介绍了VUE中使用Vue-resource完成交互,分享给大家,具体如下使用vue-resource引入vue-resourcevue-resource就像
请求数据的方式:vue-resource官方提供的vue的一个插件axiosfetch-jsonp一,vue-resource请求数据介绍:vue-resour
最近使用vue-cli做了一个小小的项目,在项目中需要使用vue-resource来与后台进行数据交互,所以我使用了本地json数据来模仿后台获取数据的流程。至
axios是vue-resource后出现的Vue请求数据的插件。vue更新到2.0之后,作者尤大就宣告不再对vue-resource更新,而是推荐的axios