老师,你好!
这个接口会报一个奇怪的错误!TypeError: utf-8 is not a function
apiRoutes.post(’/getPurlUrl’, bodyParser.json(), function (req, res) {
console.log(‘req.body======’ + req.body)
const url = 'https://u.y.qq.com/cgi-bin/musicu.fcg’
axios.post(url, req.body, {
headers: {
referer: ‘https://y.qq.com/’,
origin: ‘https://y.qq.com’,
‘Content-type’: ‘application/x-www-form-urlencoded;charset=utf-8’
}
}).then((response) => {
res.json(response.data)
}).catch((e) => {
console.log(e)
})
})
------------------------------分割线---------------------------------------------
请问这个是什么原因,nginx做代理。并且本地运行没有问题。