export function getSingerList() {
const url = 'https://c.y.qq.com/v8/fcg-bin/v8.fcg';
const data = Object.assign({}, commonParams, {
channel: 'singer',
page: 'list',
key: 'all_all_all',
pagesize: 100,
pagenum: 1,
hostUin: 0,
needNewCode: 0,
platform: 'yqq'
});
return jsonp(url, data, options);
};
我引用了老师的代码,也一样是url中出现很多空格,导致无法获取到res的问题。老师能不能帮助解决下。为什么您的项目就不会出现这个问题呢?