- 設(shè)置請求頭部
- 后端設(shè)置請求頭部
Access-Control-Allow-Credentials: true
和Access-Control-Allow-Origin: www.xxx.com
- 前端post請求設(shè)置
withCredentials=true
- 這里用了axios的請求數(shù)據(jù)方法代碼如下:
import axios from 'axios'
import config from '../config'
export default {
request (method, uri, data, headerConfig = {withCredentials: true}) {
if (!method) {
console.error('API function call requires method argument')
return
}
if (!uri) {
console.error('API function call requires uri argument')
return
}
let url = config.serverURI + uri
return axios({ method, url, data, ...headerConfig })
}
}
$.ajax({
type: "POST",
url: "http://www.xxx.com/api.php",
dataType: 'json',
xhrFields: {
withCredentials: true
},
crossDomain: true
}).then((json) => {
// balabala...
})
- 使用nodejs做代理
- 上面的那種方法需要后端配合設(shè)置頭部亡脸,對于我這種前端小白來講悟泵,聯(lián)調(diào)時(shí)各種不成功的報(bào)錯(cuò)也無從解決,所以個(gè)人比較傾向于下面這種做法联逻,鑒于使用腳手架
vue-cli
創(chuàng)建的項(xiàng)目毅戈,作者已經(jīng)給我提供好了解決的方法苹丸。
- 找到項(xiàng)目文件夾下的
config/index.js
, 里面有一行proxyTable: {}
, 這里就是作者為我們留的接口, 我們添加代理規(guī)則進(jìn)去
var path = require('path')
module.exports = {
build: {
env: require('./prod.env'),
index: path.resolve(__dirname, '../xxx/index.html'),
assetsRoot: path.resolve(__dirname, '../xxx'),
assetsSubDirectory: 'static',
assetsPublicPath: '/',
productionSourceMap: true,
productionGzip: false,
productionGzipExtensions: ['js', 'css']
},
dev: {
env: require('./dev.env'),
port: 8080,
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {
'/api': {
target: 'http://www.xxx.com/api.php/',
changeOrigin: true,
pathRewrite: {
'^/api': '/'
}
}
},
cssSourceMap: false
}
}
- 這里target為目標(biāo)域名,pathRewrite為轉(zhuǎn)換規(guī)則苇经,請求數(shù)據(jù)時(shí)將接口地址 根據(jù)轉(zhuǎn)換規(guī)則請求就可以解決跨域啦W咐怼(這里也可以配置headers,設(shè)置cookis扇单,token等)
- jsonp
- jsonp也是一種解決跨域的方法商模,不過我從來沒有用過,在網(wǎng)上查了下資料蜘澜,jsonp的原理是script標(biāo)簽引入js是不受域名限制的, 由于是模擬插入script標(biāo)簽, 所以不可以用post請求施流。
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者