Vue.js Ajax(vue-resource)

引入

<script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>

get请求

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</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="app">
    <p style="color: red">{{myInfo}}</p>
    <button @click="get()">获取</button>
</div>
<script type="text/javascript">
    new Vue({
        el:'#app',
        data:{
            myInfo:'看这里'
        },
        methods:{
            get: function () {
                let _this = this;
                this.$http
                    .get('https://www.zoutl.cn/getFruitListJson')
                    .then(function (result) {
                        _this.myInfo = result.data;
                    }, function () {
                        console.log('请求失败');
                    });
            }
        }
    })
</script>
</body>
</html>

Vue.js Ajax(vue-resource)

post请求

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</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="app">
    <p style="color: red">{{myInfo}}</p>
    <button @click="post()">获取</button>
</div>
<script type="text/javascript">
    new Vue({
        el: '#app',
        data: {
            myInfo: '看这里'
        },
        methods: {
            post: function () {
                let _this = this;
                this.$http
                    .post('https://www.zoutl.cn/getFruitJson2',
                        //传递的数据
                        {
                            id: 3,
                            name: '香蕉',
                            num: 6
                        },
                        //如果Web服务器无法处理编码为 application/json 的请求,可以启用 emulateJSON 选项
                        {
                            emulateJSON: true
                        }
                    )
                    .then(function (result) {
                        _this.myInfo = result.data;
                    }, function () {
                        console.log('请求失败');
                    });
            }
        }
    })
</script>
</body>
</html>

Vue.js Ajax(vue-resource)

上一篇:Python lstrip()方法


下一篇:【python学习】【第二节】strip、lstrip和rstrip的区别