一、后台修改header
header('Access-Control-Allow-Origin:*');//允许一切来源访问
header('Access-Control-Allow-Method:POST,GET');//访问的方式 这样就可以实现跨域请求数据。
二、使用jQuery给我们提供好的的jsonp (注意:vue中不包含jQuery,需要自行引入jquery)
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(',')
}
})
}
}
这样也可以解决,不过引入jQuery又增加了代码体积,不建议。这里仅提供一种思路