Home > Web Front-end > JS Tutorial > body text

Vue cross-domain normal debugging

php中世界最好的语言
Release: 2018-04-17 14:45:24
Original
1539 people have browsed it

In the vue project, when the front-end and the back-end perform data requests or submissions, if the back-end does not have cross-domain settings, the front-end will report "No" when debugging the code locally. 'Access-Control-Allow-Origin' header is present on the requested resource." This kind of cross-domain error.

If you want to debug normally locally, there are three solutions:

1. Change header in the background

header('Access-Control-Allow-Origin:*');//允许所有来源访问 
header('Access-Control-Allow-Method:POST,GET');//允许访问的方式  
Copy after login
In this way, data can be requested across domains.

2. Use the

jsonp provided by JQuery (Note: jquery is introduced in vue and Baidu is used by yourself)

methods: { 
 getData () { 
 var self = this 
 $.ajax({ 
  url: 'http://f.apiplus.cn/bj11x5.json', 
  type: 'GET', 
  dataType: 'JSONP', 
  success: function (res) { 
  self.data = res.data.slice(0, 3) 
  self.opencode = res.data[0].opencode.split(',') 
  } 
 }) 
 } 
}
Copy after login
This method can also solve cross-domain problems.

3. Use http-proxy-middleware proxy solution (the project is built using vue-cli scaffolding)

For example, the requested url: "http://f.apiplus.cn/bj11x5.json"

1. Open config/index.js and add the following code in proxyTable:

proxyTable: { 
 '/api': { //使用"/api"来代替"http://f.apiplus.c" 
 target: 'http://f.apiplus.cn', //源地址 
 changeOrigin: true, //改变源 
 pathRewrite: { 
  '^/api': 'http://f.apiplus.cn' //路径重写 
  } 
 } 
}
Copy after login

2. Use "/api" directly when requesting data using axios:

getData () { 
 axios.get('/api/bj11x5.json', function (res) { 
 console.log(res) 
 })
Copy after login

Use this method to solve cross-domain problems, and problems may arise if you continue to use this method when packaging and deploying. The solution is as follows:

let serverUrl = '/api/' //本地调试时 
// let serverUrl = 'http://f.apiplus.cn/' //打包部署上线时 
export default { 
 dataUrl: serverUrl + 'bj11x5.json' 
}
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the use of ajax and jsonp


Detailed explanation of the use of polymorphism in JS


The above is the detailed content of Vue cross-domain normal debugging. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!