webpack开发环境跨域解决方法

 

   proxyTable: {
      "/api": {
        target: "http://???",
        changeOrigin: true,
        // pathRewrite: {
        //   '^/api': '/' //重写接口,可以为空'',也可以为'/'
        // }
      },
      // "/webService": {
      //   target: "http://opac.jxlibrary.net:8082",
      //   changeOrigin: true,
      //   // pathRewrite: {
      //   //   '^/api': '/' //重写接口,可以为空'',也可以为'/'
      //   // }
      // },
    
    },
   .get("/api/v1/seach", {
            params: param
          })

webpack开发环境跨域解决方法_第1张图片

你可能感兴趣的:(webpack)