vue上传文件本地DevServer代理可走通,部署后跨域问题解决(一)

背景:前端VUE启动在本地localhost:8077 后端Springboot也启动在本地 localhost:8099
前端上传文件调用后端接口出现跨域问题(在下一篇结合后端代码一起讲解),最开始考虑的是加上了代理,本地调通了以后打包部署,然后用的是http-server

npm run build
cd dist
http-server

为什么本地代理走的好好的,打包部署代理就不生效了呢,考虑可能存在:
1.npm run dev 和npm run build 走的代理路径不一样
2.http-server不支持代理
先看本地设置代理,npm run dev的情况:
/AssignCase.vue

<template>
  <div>
    <el-tabs><el-tab-pane label="信立坦病例分配给专家点评">按以下模板上传Excel即可触发</el-tab-pane></el-tabs>
    <el-image
      :src='require("../../assets/xinlitan.png")'
      :fit="fit"></el-image>
    <el-upload
    class="upload-demo"
    ref="upload"
    :on-change="handleChange"   
    :file-list="fileList"
    :limit="1"        
    drag
    action="apiwx/token/assigncase/"    
    accept=".xlsx,.xls"  
    :with-credentials=true
    show-file-list
    :on-success="handleAvatarSuccess"
    >
    <i class="el-icon-upload"></i>
    <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
    <div class="el-upload__tip" slot="tip">只能上传Excel文件,格式xls、xlsx</div>
    </el-upload>
    <span>{{assignresult}}</span>
  </div>
</template>
<script>
export default {
  name: 'submitUpload',
  data(){
    return{
      fileList:[],
      assignresult:''
    }
  },
  methods: {
    handleChange:function(file,fileList) {
      console.log('文件改变了')
      console.log(file)
      },
      handleAvatarSuccess(response){
      console.log('文件上传了')
      console.log(response)
        if (response.msg === 'OK') {
          console.log("response ok")
          this.assignresult = response.data
      }
        else{
          this.assignresult = response.msg
        }
    }
  }
}
</script>

代理设置在/config/index.js

'use strict'
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.

const path = require('path')

module.exports = {
  dev: {

    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
  
      '/apiwx': {
        // 测试环境
        target: 'http://localhost:8077',  // 接口域名
        changeOrigin: true,  //是否跨域
        pathRewrite: {
          '^/apiwx': ''   //请求后端的路径不带/apiwx这里重写值为空
        }
      }
     },
    // Various Dev Server settings
    host: 'localhost', // can be overwritten by process.env.HOST
    port: 8099, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
    autoOpenBrowser: false,
    errorOverlay: true,
    notifyOnErrors: true,
    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-

    // Use Eslint Loader?
    // If true, your code will be linted during bundling and
    // linting errors and warnings will be shown in the console.
    useEslint: true,
    // If true, eslint errors and warnings will also be shown in the error overlay
    // in the browser.
    showEslintErrorsInOverlay: false,

    /**
     * Source Maps
     */

    // https://webpack.js.org/configuration/devtool/#development
    devtool: 'cheap-module-eval-source-map',

    // If you have problems debugging vue-files in devtools,
    // set this to false - it *may* help
    // https://vue-loader.vuejs.org/en/options.html#cachebusting
    cacheBusting: true,

    cssSourceMap: true
  },

  build: {
    // Template for index.html
    index: path.resolve(__dirname, '../dist/index.html'),

    // Paths
    assetsRoot: path.resolve(__dirname, '../dist'),
    assetsSubDirectory: 'static',
    assetsPublicPath: './',

    /**
     * Source Maps
     */

    productionSourceMap: true,
    // https://webpack.js.org/configuration/devtool/#production
    devtool: '#source-map',
    // Gzip off by default as many popular static hosts such as
    // Surge or Netlify already gzip all static assets for you.
    // Before setting to `true`, make sure to:
    // npm install --save-dev compression-webpack-plugin
    productionGzip: false,
    productionGzipExtensions: ['js', 'css'],
    // Run the build command with an extra argument to
    // View the bundle analyzer report after build finishes:
    // `npm run build --report`
    // Set to `true` or `false` to always turn it on or off
    bundleAnalyzerReport: process.env.npm_config_report
  }
}

此时npm run dev本地跑走的dev,而npm run build走的build,如下:
/package.json dev 后面跟的脚本是webpack-dev-server

...略
"scripts": {
    "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
    "start": "npm run dev",
    "lint": "eslint --ext .js,.vue src",
    "build": "node build/build.js"
  },
...略

先看dev走的webpack.dev.conf.js


npm run dev走dev的代理.png
publicPath.png

build/build.js

image.png

webpack.prod.conf.js 与webpack.dev.conf.js对比


image.png

可以看到右侧文件webpack.prod.conf.js是没有devServer的,也没有任何proxy的设置
因此单单尝试在/config/index.js里build里面加proxyTable是不会生效的

'use strict'
const path = require('path')
module.exports = {
  dev: {
    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
      '/apiwx': {
        // 测试环境
        target: 'http://localhost:8077',  // 接口域名
        changeOrigin: true,  //是否跨域
        pathRewrite: {
          '^/apiwx': ''   
        }
      }
     },
    //此处省略
  },
  build: {
    // Template for index.html
    index: path.resolve(__dirname, '../dist/index.html'),
    // Paths
    assetsRoot: path.resolve(__dirname, '../dist'),
    assetsSubDirectory: 'static',
    assetsPublicPath: './',
    proxyTable: {
      '/apiwx': {
        target: 'http://localhost:8077',  // 接口域名
        changeOrigin: true,  //是否跨域
        pathRewrite: {
          '^/apiwx': ''  
        }
      }
     },
   //此处省略
}

在开发模式下,DevServer 提供虚拟服务器,让我们进行开发和调试。

查了一下网上遇到的各种部署后代理不生效的问题,参考一位比较相似的

用webpack-dev-server做了一些接口代理的工作(代理qq音乐的API),所以和传统纯前端项目还有所不同,不是打包压缩扔到nginx静态目录就行。需要在生产上启动这个webpack-dev-server服务。

他是在远程生产服务器上下载了整个工程,npm install然后pm2 start npm --watch --name myApp -- run dev启动这个webpack-dev-server服务
本工程用的是本地服务器http-server 前端部署后代理走不通,那就从后端入手了,接下篇

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,185评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,445评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,684评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,564评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,681评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,874评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,025评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,761评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,217评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,545评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,694评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,351评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,988评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,778评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,007评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,427评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,580评论 2 349