作者:14795823364- | 来源:互联网 | 2024-12-01 23:59
嗨,我正在为我的api调用使用axious,并且无法在nodejs中解析我的数据,不确定为什么它的未定义或解析时显示错误,请有人帮忙:)
await axios({ baseURL: `/api/users`,method: 'get',data: JSON.stringify({ data: ['1,2,3,4,5'] }) });
无法解析快速路线
router.get('/api/users/:id',(req,res)=>{
console.log(req.body) // { '{"data":': { '1,5': '' } }
console.log(JSON.parse(req.body)) // Unexpected token o in JSON at position 1
console.log(req.body.data) // undefined
...
})