作为[object Object]进入服务器的对象数组

时间:2018-10-18 00:58:57

标签: javascript axios

我正在尝试将当前状态的属性作为(对象数组)发送到我的服务器。当我尝试将其登录到服务器中时,它以[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);
}

1 个答案:

答案 0 :(得分:0)

您需要通过响应(res)返回一些信息。添加到端点的末尾。

return res.json({
  playerArr,
  msg: 'It worked'
})