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

Vue三种请求方式

程序员文章站 2022-05-18 15:30:09
...

~~<html 代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Vue-Resource基本使用</title>
    <link rel="stylesheet" href="css/bootstrap.min.css">
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    <script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
</head>
<body>
<div id="vue-resoure">
    <input type="button" value="get请求" @click="getInfo">
    <input type="button" value="post请求" @click="postInfo">
    <input type="button" value="Jsonp请求" @click="jsonpInfo">
</div>
<script src="js/Vue-resource.js"></script>
</body>
</html>

<js 代码

var vm = new Vue({
    el:"#vue-resoure",
    data:{},
    methods: {
        getInfo:function () {
            //发出get请求
            this.$http.get("http://vue.studyit.io/api/getlunbo").then(function (res) {
                console.log(res.body);
            })
        },
        postInfo:function () {
            //发出post请求
            this.$http.post("http://vue.studyit.io/api/getlunbo",{id:1,name:'ypj'},{emulateJSON:true}).then(res=>{
                console.log(res.body);
            })
        },
        jsonpInfo:function () {
            this.$http.jsonp("http://vue.studyit.io/api/getlunbo").then(res=>{
                console.log(res.body);
            })
        }
    }
});