欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

vue引入axios同源跨域問題

前言:

為塔河等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及塔河網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站建設(shè)、網(wǎng)站制作、塔河網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

跨域方案有很多種,既然我們用到了Vue,那么就使用vue提供的跨域方案。

解決方案:

1.修改HttpRequestUtil.js

 import axios from 'axios'
 export var baseurl = '/api'
 /**
 * Get請(qǐng)求
 */
 export function get(url, callback){
  console.log('測(cè)試get請(qǐng)求')
  axios.get(baseurl+url)
  .then(function (response) {
   console.log(response)
   callback(response.data,true)
  })
  .catch(function (error) {
   console.log(error)
   callback(null,false)
  })
 }
 export default {
  get
 }

2.修改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: {
  '/api': {
   target: 'http://127.0.0.1:8088',//設(shè)置你調(diào)用的接口域名和端口號(hào) 別忘了加http
   changeOrigin: true,
   pathRewrite: {
   '^/api': 'http://127.0.0.1:8088'//這里理解成用‘/api'代替target里面的地址,后面組件中我們掉接口時(shí)直接用api代替 比如我要調(diào)用'http://40.00.100.100:3002/user/add',直接寫‘/api/user/add'即可
   }
  }
  },
  // Various Dev Server settings
  host: 'localhost', // can be overwritten by process.env.HOST
  port: 8090, // 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-
  /**
  * 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 of
  bundleAnalyzerReport: process.env.npm_config_report
 }
 }

proxyTable: {
'/api' : {
target: 'http://127.0.0.1:8088' , //設(shè)置你調(diào)用的接口域名和端口號(hào) 別忘了加http
changeOrigin: true ,
pathRewrite: {
'^/api' : 'http://127.0.0.1:8088' //這里理解成用‘/api'代替target里面的地址,后面組件中我們掉接口時(shí)直接用api代替 比如我要調(diào)用'http://40.00.100.100:3002/user/add',直接寫‘/api/user/add'即可
}
}
},

總結(jié)

以上所述是小編給大家介紹的vue引入axios同源跨域問題,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!

網(wǎng)站標(biāo)題:vue引入axios同源跨域問題
標(biāo)題路徑:http://aaarwkj.com/article26/iggecg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、網(wǎng)站設(shè)計(jì)公司服務(wù)器托管、標(biāo)簽優(yōu)化App開發(fā)、手機(jī)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設(shè)
清纯少妇激情四射网站| 国产亚洲超级97免费视频| 国产亚洲综合区成人国产| 91人妻人澡人人爽| 亚洲欧美成人自偷自拍一区| 久久精品亚洲精品国产| 巴西老熟女大奶子多毛逼| av中文字幕一二三区| 日本不卡一区二区在线观看 | 农村精品少妇久久久久久| 久久精品国产亚洲成人av| av中文字幕啊嗯不要| 国产黄色片子在线观看| 最新国产不卡一区二区| 国产亚洲无线码一区二区| 国产av剧情极品丝袜美女| 久久综合视频大片视频| 免费欧美一级黄片播放| 91日本在线免费观看视频| 亚洲综合精品久久久一区| 日本亚洲欧洲一区二区| 国产精品视频一区二区久久| 粉嫩极品国产在线观看| 欧美私人影院—区二区日本| 中文字幕人成乱码在线| 成人午夜福利视频免费观看| 亚洲免费一级黄色录像片| 成人精品欧美欧美一级乱黄| 麻豆精品新av中文字幕| 精品一区二区三区毛卡片| 一起草视频在线观看视频| 日本岛国一区二区在线| 丰满人妻熟妇乱精品视频| 精品视频偷拍一区二区三区| 97在线观看视频免费| 国产精品网站在线观看不卡| 亚洲av日韩高清在线观看| 蜜臀在线免费观看黄片视频| 国产91在线一区精品| 欧美大吊视频在线观看| 日韩精品亚洲专区在线观看|