作者:firespace | 来源:互联网 | 2024-09-25 09:54
在
框架上,通过
插件请求腾讯地图但
地址,请问为什么没有返回相对应但数据,但在游览器中输入这个
地址会返回对应但数据。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| app.get('/addShopLoction', (req, res) => {
var url = 'https://api.imjad.cn/cloudmusic/?type=song&id=421423806&br=128000'
const s = request.get(url)
.set('X-API-Key', 'foobar')
.set('Accept', 'application/json')
.end((err, res) => {
if (res.ok) {
console.log('yay got ' + res);
} else {
console.log('Oh no! error ' + res.text);
}
})
res.json({
data: s
}) |
结果