vue2.0 获取qq音乐web上的全部歌曲数据

发布于 2022-09-07 20:43:21 字数 827 浏览 18 评论 0

我用vue-resorce 在webpack.dev.conf.js和index.js里面配置了prxyTable:
const proxyTable = {
'/musichall': {

target: 'https://c.y.qq.com',
changeOrigin: true,
pathRewrite: {}

},
'/splcloud': {

target: 'https://c.y.qq.com',
changeOrigin: true,
pathRewrite: {}

}

}
在要获取数据的页面写了方法:
requsetAllList() {

  var api = '/splcloud/fcgi-bin/fcg_yqqhomepagerecommend.fcg'
  this.$http.get(api).then(
    response => {
      console.log(response)
      // this.allList = response.body.data.slider
    },
    error => {
      console.log(error)
    }
  )
}
这么写,不报错,但是获取不到数据,

clipboard.png
请问这个为什么获取不到呢,菜鸟刚接触,不是太懂,多谢大神了
试过了vue-resorce 和axios都弄不对

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

思念绕指尖 2022-09-14 20:43:22

代理配置问题,谢谢

↙厌世 2022-09-14 20:43:22

404找不到啊,url错误

猫瑾少女 2022-09-14 20:43:22

404呐,证明你的url错了。而且你的url为什么是xxxx.fcg

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文