欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue-resource发送请求

程序员文章站 2023-11-18 10:29:10
vue-resource
<!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>