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>
        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>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章