美文网首页
vue2+cli4,前端跨域

vue2+cli4,前端跨域

作者: 背着生活往前走你才辨的出美和丑 | 来源:发表于2021-04-25 17:52 被阅读0次

    假设 mock 接口为http://192.168.1.1:9000/1

    module.exports = {
      devServer: {
        // overlay: { // 让浏览器 overlay 同时显示警告和错误
        //   warnings: true,
        //   errors: true
        // },
        // open: false, // 是否打开浏览器
        // host: "localhost",
        // port: "8080", // 代理断就
        // https: false,
        // hotOnly: false, // 热更新
        proxy: {
          "/api": {
            target: "http://192.168.1.1:9000", // 目标代理接口地址
            secure: false,
            changeOrigin: true, // 开启代理,在本地创建一个虚拟服务端
            // ws: true, // 是否启用websockets
            pathRewrite: {
              "^/api": "/"
            }
          }
        }
      }
    };
    

    访问:

    <script>
    import axios from "axios";
    export default {
      mounted() {
        axios.get("/api/1").then(res => {
          console.log('proxy:', res);
        });
      }
    };
    </script>
    

    相关文章

      网友评论

          本文标题:vue2+cli4,前端跨域

          本文链接:https://www.haomeiwen.com/subject/uqxjrltx.html