[Vue.js]学习笔记-Vue.js-Ajax-Get请求
导读部分
教程部分
Vue.js 使用了基于 HTML 的模版语法,允许开发者声明式地将 DOM 绑定至底层 Vue 实例的数据。 另: Vue.js 的核心是一个允许你采用简洁的模板语法来声明式的将数据渲染进 DOM 的系统。
Vue 要实现异步加载需要使用到 vue-resource 库。 [HTML] 纯文本查看 复制代码 <script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
以下是一个简单的 Get 请求实例,请求地址是一个简单的 txt 文本: 实例:
[HTML] 纯文本查看 复制代码 <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue 测试实例 - 苏飞论坛(sufeinet.com)</title>
<script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script>
<script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
</head>
<body>
<div id="box">
<input type="button" @click="get()" value="点我异步获取数据(Get)">
</div>
<script type = "text/javascript">
window.onload = function(){
var vm = new Vue({
el:'#box',
data:{
msg:'Hello World!',
},
methods:{
get:function(){
//发送get请求
this.$http.get('/try/ajax/ajax_info.txt').then(function(res){
document.write(res.body);
},function(){
console.log('请求失败处理');
});
}
}
});
}
</script>
</body>
</html>
运行结果:
点击按钮后, 结果如下:
如果需要传递数据,可以使用 this.$http.get('get.php',jsonData) 格式,第二个参数 jsonData 就是传到后端的数据。 [JavaScript] 纯文本查看 复制代码 this.$http.get('get.php',{a:1,b:2}).then(function(res){
document.write(res.body);
},function(res){
console.log(res.status);
});
|