代码之家  ›  专栏  ›  技术社区  ›  Hadi Zouhbi

如何将从axios获得的数据传递到使用node的后端。js(react&node.js)

  •  0
  • Hadi Zouhbi  · 技术社区  · 2 年前

    app.post('/saveDiseaseDetails' , (req , res) => {
      //Console.log the data here
    })
    

    这是返回一些数据的axios,我想将这些数据发送到后端

    axios.post("https://api.plant.id/v2/identify", data)
      .then(({ data }) => console.log("SUCCESS", data))}
    

    基本上,我想要的是从axios请求和控制台获取数据。将其记录在后端。我刚接触react和axios,所以我有点麻烦

    1 回复  |  直到 2 年前
        1
  •  0
  •   Kaneki21    2 年前

    前端

    const url_to_your_backend //this has to be added accordingly
    axios.post("https://api.plant.id/v2/identify", data)
      .then(async({ data }) =>{
           console.log("SUCCESS", data)
           const backend_response=await axios.post(url_to_your_backend,data,{})
           console.log("backend response",backend_response)
       })
    

    后端

    app.post('/saveDiseaseDetails' , (req , res) => {
      //Console.log the data here
      console.log(req.body)
      res.status(200).json({message:"received data in backend})
    })