世博应用程序中的表单数据以 _parts 形式接收,但从 Web 应用程序发送时以对象形式接收
我通过使用 FormData 向后端发送表单,并在后端使用 multer 来接收数据,它在我的网络应用程序上运行良好,但是在执行相同的 axios 调用以在反应本机中提交数据时显示数据字段正在后端接收下面的表格
{ _parts: [ [ 'firstname', 'fahad' ], [ 'firstname', 'RAO' ] ] }
我正在我的网络应用程序(在那里工作)和我的博览会应用程序中进行以下调用
const testFOrmData = ()=>{
var data = new FormData()
data.append("firstname","fahad")
data.append("firstnae","RAO")
const adata = {
firsn:"rew"
}
axios.post("http://x.x.x.x:xxxx/api/testform",data)
.then((res)=>{
console.log(res)
})
alert("SANS")
}
如何以对象形式接收它,这样我就不必在后端的现有代码中进行更改,因为我有很多表格并且我已提交在我的网络应用程序中使用表单数据,并且必须在移动应用程序中执行相同的操作,但我不想在没有 FormData 的情况下提交(通过在 axios 中发送对象)
我的后端
router.post("/testform",upload.none(),(req,res)=>{
console.log(req.body)
res.json({resp:req.body})
})
I am sending form to backend by using FormData and using multer on backend to recieve the data, it works fine on my web app but on doing the same axios call to submit data in react-native shows that data fields are being received on backend in following form
{ _parts: [ [ 'firstname', 'fahad' ], [ 'firstname', 'RAO' ] ] }
i am doing following call in my web app (which works there) and in my expo app
const testFOrmData = ()=>{
var data = new FormData()
data.append("firstname","fahad")
data.append("firstnae","RAO")
const adata = {
firsn:"rew"
}
axios.post("http://x.x.x.x:xxxx/api/testform",data)
.then((res)=>{
console.log(res)
})
alert("SANS")
}
How to receive it in object form such that i dont have to make changes in my existing code in backend as i have so many forms and i have submitted them using form data in my web app and have to do same in mobile app but i dont want to submit without FormData(by sending object in axios)
my backend
router.post("/testform",upload.none(),(req,res)=>{
console.log(req.body)
res.json({resp:req.body})
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论