Vue GET交互
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>数据交互</title><script src="../js/Vue.js"></script><script src="../js/vue-resource.js"></script><script>
·
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>数据交互</title>
<script src="../js/Vue.js"></script>
<script src="../js/vue-resource.js"></script>
<script>
window.onload = function(){
var vm = new Vue({
el:'#box',
data:{},
methods:{
get:function(){
this.$http.get('a.txt').then(function(res){
alert(res.data);
},function(res){
console.log(res.status);
});
}
}
});
}
</script>
</head>
<body>
<div id="box">
<input type="button" value="按钮" @click="get()">
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>智能社——http://www.zhinengshe.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<style>
</style>
<script src="../js/vue1.0.js"></script>
<script src="../js/vue-resource.js"></script>
<script>
window.onload=function(){
new Vue({
el:'body',
data:{
},
methods:{
get:function(){
this.$http.get('get.php',{
a:1,
b:2
}).then(function(res){
alert(res.data);
},function(res){
alert('出错了');
});
}
}
});
};
</script>
</head>
<body>
<input type="button" value="按钮" @click="get()">
</body>
</html>
更多推荐
已为社区贡献11条内容
所有评论(0)