vue/cli axios post的使用及Authorization值传递

main.js引用:

import axios from 'axios';
Vue.prototype.$http = axios;


axios.defaults.baseURL = "http://localhost:8080/";

程序中使用:


            let header = {
                headers: {
                    "Access-Control-Allow-Origin": "*", //解决cors头问题
                    "Access-Control-Allow-Credentials": "true", //解决session问题
                    "Content-Type":
                        "application/x-www-form-urlencoded; charset=UTF-8", //将表单数据传递转化为form-data类型
                    Authorization: "hezhongxia",
                },
                withCredentials: true,   //此处不使用,采用nginx 时,post接收不了数据
            };
            let url = "/userlogin";

            this.$http.get(url, this.loginForm, header).then(function (rep) {
                console.log(rep);
            });

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐