这是我的对象:
data: {
id: '',
name: '',
color: '',
extra: [{'full':'1'}, {'full':'2'}]
}
id、name 和 color post 很好,但额外 post as [object] [object]
我使用data.extra = JSON.stringify(data.extra)
但不工作
我的代码:
fetch('/save/', {
method: 'POST',
headers: {
'Token': Tools.userToken(),
'Content-Type':'application/x-www-form-urlencoded'
},
body: new URLSearchParams(data)
})