世博应用程序中的表单数据以 _parts 形式接收,但从 Web 应用程序发送时以对象形式接收

发布于 2025-01-09 00:07:18 字数 875 浏览 0 评论 0原文

我通过使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文