vue POST交互
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>post交互</title><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0
·
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>post交互</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:{
post:function(){
this.$http.post('post.php',{
a:1,
b:2
},{
emulateJSON:true
}).then(function(res){
alert(res.data);
},function(res){
alert(res.status);
});
}
}
});
};
</script>
</head>
<body>
<input type="button" value="按钮" @click="post()">
</body>
</html>
更多推荐
已为社区贡献11条内容
所有评论(0)