在 ReactJs 应用程序中执行 post 请求会生成以下 req.body: { '{"userEmail":"user@host.com","password":"12345"}': '' }
这是我的代码:
返回 axios({ url: ' http://localhost:3000/apitest ', 方法: 'post', headers: {'Content-Type': 'application/x-www-form-urlencoded'}, 数据: { userEmail : 'user@host.com', 密码: '12345' }, })
感谢您的任何帮助!