MLuminary/ChickenMusic

搜索结果 api 的使用

MLuminary opened this issue · 0 comments

前几天发现自己搜索页面出了点问题,搜索结果无法获取,发现好像做了跨域处理,于是还是用老方法修改请求头去获取到对应数据,但是返回的是 jsonp 格式的数据。然后 jsonp 转 json 便如下

let num1 = res.indexOf('(')
let num2 = res.lastIndexOf(')')
let resultData = JSON.parse(res.substring(num1 + 1, num2))