vue -resourc如何解决跨域问题
vue获取https://y.qq.com/m/index.html qq音乐上的接口
https://c.y.qq.com/musichall/... 接口
methods: {
requsetData() {
var api =
'https://c.y.qq.com/musichall/fcgi-bin/fcg_yqqhomepagerecommend.fcg'
this.$http.get(api).then(
response => {
console.log(response)
},
error => {
console.log(error)
}
)
}
},
报错:
请问这个改怎么解决,我用jsonp,不包这个跨域的问题,但是获取不到数据
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CORS和jsonp都是需要服务器端配合的,建议采用服务器端中转请求的方式来实现,类似
koa-proxy
这个包