码迷,mamicode.com
首页 > 其他好文 > 详细

vue-resource发送请求

时间:2019-09-28 13:07:09      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:source   methods   axios   数据格式   默认   get请求   没有   数据   引入   

<!DOCTYPE html>
<html>
<head>
    <title>vue-resource</title>
    <meta charset="utf-8">
</head>

<body>
    <div id="app">
       <input type="button" value="get请求" @click="getInfo">
       <input type="button" value="post请求" @click="postInfo">
    </div>
</body>
<!-- 基于vue-resource实现get post请求 也可利用axios第三方包实现-->
<script src="https://cdn.staticfile.org/vue/2.6.10/vue.js"></script>
<script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.js"></script>
<script>
    // vue-promise是基于vue的,所以引入CDN库时需要注意顺序,应先引入vue
    let vm = new Vue({
        el: "#app",
        data:{
        },
        methods:{//vue-resource发送请求是基于promise的
            getInfo(){
               this.$http.get(https://www.easy-mock.com/mock/5d537a1cf651bc6ff265fb77/example/result/cart.json) 
                .then(res=>{
                    console.log(res);
                })
            },
            postInfo(){
                this.$http.post(https://www.easy-mock.com/mock/5d537a1cf651bc6ff265fb77/example/upload,{},{
                    emulateJSON:true//设置这个参数相当于application/x-www-form-urlencoded,由于手动提交请求没有默认表单格式,需要设置发送的数据格式
                })
                .then(res=>{
                    console.log(res.body);
                })
            },
            }
    });
</script>
</html>

 

vue-resource发送请求

标签:source   methods   axios   数据格式   默认   get请求   没有   数据   引入   

原文地址:https://www.cnblogs.com/angle-xiu/p/11602272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!