vue ---- solve cross-domain problems

Option 1: be solved by proxy

  Part of the code

  / Api / cms: url expressed at the beginning of this (/ api / cms / xx / xx) forwards the request to http: // localhost: 31001 / api / cms / xx / xx (there is a proxy server node.js request), pathRewrite : shows a / api string replacement specified, the request is forwarded into a url http: // localhost: 31001 / cms / xx / xx;

  For example, we visit

module.exports = {
  dev: {
    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    //proxyTable: proxyConfig.proxyList,
    proxyTable: {
      '/banner': {
        //target: 'http://localhost:3000/mock/11'
        target: 'http://127.0.0.1:7777'

      },
      '/api/cms': {
        target: 'http://localhost:31001',
        pathRewrite: {
          '^/api': ''
        }
        //target: 'http://127.0.0.1:50201'

      }
      /*,
      '/ucenter': {
        // target: 'http://localhost:3000/mock/11'
        //target: 'http://127.0.0.1:31200'
        target: 'http://127.0.0.1:50201'

      },
      '/auth': {
        // target: 'http://localhost:3000/mock/11'
        //target: 'http://127.0.0.1:31200'
        target: 'http://127.0.0.1:50201/api'

      },
      '/course': {
        // target: 'http://localhost:3000/mock/11'
        //target: 'http://127.0.0.1:31200'
        target: 'http://127.0.0.1:50201/api'

      },
      '/media': {//媒资管理
        //target: 'http://127.0.0.1:31400'
        target: 'http://127.0.0.1:50201'
      },

      '/cms/!*': {//cms管理
        //target: 'http://127.0.0.1:31001'
        target: 'http://127.0.0.1:50201'

      }, 


      '/ Filesystem / *!': {// file system management 
        // target: 'http://127.0.0.1:22100' 
        target: 'http://127.0.0.1:50201' 

      }, 
      '/ category / ! * ': {// Category management 
        // target:' http://127.0.0.1:3000/mock/11 ' 
        // target:' http://127.0.0.1:31200 ' 
        target:' HTTP: // 127.0.0.1:50201 ' 

      }, 
      ' / SYS / *! ': system management {// 
        // target:' http://127.0.0.1:31001 ' 
        target:' http://127.0.0.1:50201 ' 

      } , * / 
      / * '/ static / *!': system management {// 
        // target: 'http://127.0.0.1:31001' 
        target: 'of http://127.0.0.1' 

      },
      '/ group1 / *': { // System Management
        // target: 'http://127.0.0.1:3000/mock/11'
        target: 'http://192.168.101.64'

      }*/
    },
    // Various Dev Server settings
    host: 'localhost', // can be overwritten by process.env.HOST
    port: 11000, // 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: '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,

    // CSS Sourcemaps off by default because relative paths are "buggy"
    // with this option, according to the CSS-Loader README
    // (https://github.com/webpack/css-loader#sourcemaps)
    // In our experience, they generally work as expected,
    // just be aware of this issue when enabling this option.
    cssSourceMap: false, 
  } 
}

  

Guess you like

Origin www.cnblogs.com/yanxiaoge/p/11816904.html