📌  相关文章
📜  如何将表单数据从 react 发送到 express - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:32.999000             🧑  作者: Mango

代码示例2
const url = localhost:4000/api/users/register;
const usersData= [];

let getData = () => {
axios.get(url)
   .then(res => usersData.push(res.data))
   .catch(err => console.log(err.data))
}