如何在React Native中获取带有方括号的正文/查询的POST?
赞:
user[email]
这是我的代码:
fetch('url/users/sign_in/', {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
'user[email]': this.state.email,
'user[password]: this.state.password
})
});
答案 0 :(得分:0)
使user
是一个对象。
"user": {
"email": this.state.email,
...