欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

vue中this.$http.post()跨域和请求参数丢失的解决

时间:2022-08-15 10:29:39|栏目:vue|点击:

this.$http.post()跨域和请求参数丢失

methods: {
    research: function () {
        //post请求远程资源
        this.$http.post(
            //请求的url
            "http://www.hefeixyh.com/login.html",
            //请求参数,不能以get请求方式写:{params: {userName: "root123", passWord: "root123"}}
            {userName: "root123", passWord: "root123"},
            //解决跨域问题,不加无法跨域
            {emulateJSON: true}
        ).then(
            function (res) {
                console.log(res);
                this.msg = res.bodyText;
            },
            function (res) {
                console.log(res.status);
            }
        );
    }
}

this.http.post()参数需注意

第一个参数是url,第二个参数是body,body为object,如果body为空的时候,参数填{};

this.http.post('url' + id, {})

.subscribe(res => {
}, error => {
})

上一篇:Vue框架中如何调用模拟数据你知道吗

栏    目:vue

下一篇:Vue模板内引入的组件样式覆盖失效原因及解决

本文标题:vue中this.$http.post()跨域和请求参数丢失的解决

本文地址:http://www.codeinn.net/misctech/210872.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有