我正在尝试将我的ajax调用重写为fetch:
的Ajax:
$.post({
context: this,
url: "/api/v1/users",
data: {
user:
{
email: email,
password: password
}
}
}).done((user) => {
}).fail((error) => {
})
取:
fetch('/api/v1/users', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: {
"user" :
{
"email" : email,
"password" : password
}
}
})
.then(res => {
if (res.status !== 200) { {
console.log("error")
})
} else {
res.json().then(data => {
console.log(data)
})
}
})
我从服务器收到错误的空params〜错误请求。
我也找到了这种方法,但在下面的代码中我收到一个错误:意外的令牌。
var payload = {
"user" :
{
"email" : email,
"password" : password
}
};
var data = new FormData();
data.append( "json", JSON.stringify( payload ) );
fetch('/api/v1/users', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: data
})
如何重写ajax请求以获取?
答案 0 :(得分:11)
在github上关注此主题:https://github.com/matthew-andrews/isomorphic-fetch/issues/34
我的问题的解决方案是使用JSON.stringify函数并将Content-Type标头设置为application / json。不太确定为什么我的问题中的第二次尝试不起作用。
fetch('/api/v1/users', {
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ "user": {
"email" : email,
"password" : password
}}),
})
官方MDN文档:
var myHeaders = new Headers();
myHeaders.append('Content-Type', 'application/json');
fetch('/contact-form', {
method: 'POST',
headers: myHeaders,
mode: 'cors',
cache: 'default',
body: JSON.stringify(fields)
}).then(() => {
dispatch(contactFormSubmitSuccess());
});
答案 1 :(得分:4)
TL;DR 如果没有 mode: 'cors'
,您的 JSON 正文将无法通过。
我为此纠结了一会儿。 cors
是问题所在。假设您正在执行从一个域到另一个域的请求(即从 localhost:8080
到 localhost:3000
),您需要在获取设置和接收域 (mode: 'cors'
) 中有 localhost:3000
需要允许来自发送域 (localhost:8080
) 的请求。
所以上面代码中的描述:
从localhost:8080
到localhost:3000
的请求
fetch('http://localhost:3000/users/sign_in', {
method: 'POST',
mode: 'cors', // this cannot be 'no-cors'
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"user": {
"email": `${this.state.userEmail}`,
"password": `${this.state.userPass}`
}
}),
})
然后确保您的接收域 localhost:3000
允许来自 localhost:8080
的 CORS。
答案 2 :(得分:2)
你应该试试这个:
fetch('/api/v1/users', {
method: 'post',
body: JSON.stringify({"user":{
"email": email,
"password": password
}}),
});
答案 3 :(得分:1)
以body
的身份发送json
时失败了。
var formData = new FormData();
formData.append('key1', 'value1');
formData.append('key1', 'value2');
fetch('url', {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'multipart/form-data'
},
body: formData
}`)`
编辑:就我而言,服务器仅通过表单数据提交标识了内容。未编写代码以将请求正文读取为json。因此,您的服务器端代码也可能会出现问题。
答案 4 :(得分:0)
标题:{'Content-Type':'application / json'}-已回答
答案 5 :(得分:0)
如果您使用Express服务器处理请求,请确保在以下行中添加:
app.use(express.json({limit:'1mb'}))