我正在尝试将当前状态的属性作为(对象数组)发送到我的服务器。当我尝试将其登录到服务器中时,它以[object Object]数组的形式返回。 JSON.stringify仅在每个对象周围添加“”。
//sending my current players property to here
getFantasyPros: function(players) {
return axios.get("/api/scraper/" + players);
},
//end point
router.get("/:players", (req, res) => {
const playerArr = JSON.stringify(req.params);
console.log(playerArr);
}
答案 0 :(得分:0)
您需要通过响应(res)返回一些信息。添加到端点的末尾。
return res.json({
playerArr,
msg: 'It worked'
})