Vue.js同React、Angular,可以说号称前端三巨头。
前段时间,有个哥们说,Vue.js现在出2.0版本了。可是我现在还是在用1.0的。
Vue.js一直都没有好好系统的学习,包括目前公司虽然是在用Vue,但是让我感觉用的有些偏了。比如Vue.js明明就有异步交互,但是我用的却还是jQuery的ajax,说到这也不是歧视jQuery,只不过觉得没有用到刀刃上。总觉得怪怪的。
今天贴一段代码,关于Vue.js的Ajax请求,希望能给朋友们带来帮助。
下面代码,测试完全没问题,只不过url需要改成你个人项目或公司项目对应的那个。
<!DOCTYPE html> <htmlheadMeta charset="utf-8"title>Vue 测试实例</script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"bodydiv id="Box"> input type="button" @click="get()" value="点我异步获取数据(Get)"divtype = "text/javascript"> window.onload = function(){ var vm new Vue({ el:'#Box,data:{ msg:Hello World!(){ //发送get请求 this.$http.get(localhost:8080/test-web/database/getAllDataBaseInfo).then((res){ document.write(res.body); },(){ console.log(请求失败处理); }); } } }); } >
原文链接:/ajax/868817.html