在Axios中的对象键中添加一个前缀
我有这个对象
data = {
others: [
{
code: "A", label: "0-A"
},
{
code: "B", label: "0-B"
},
...,
{
code: "N", label: "0-N"
}
]
}
,我需要将其他_
前缀添加到code
value(示例,eleth_n
)之前,然后将其发送到Axios查询:
await axios.post(`${URL}`, { data })
I have the object
data = {
others: [
{
code: "A", label: "0-A"
},
{
code: "B", label: "0-B"
},
...,
{
code: "N", label: "0-N"
}
]
}
And I need to add the other_
prefix to code
value(example, other_N
) before sending it to the axios query:
await axios.post(`${URL}`, { data })
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西
Something like this
您可以使用功能来操纵数据对象
you can use the Array.map function to manipulate the data object