我尝试从单页应用程序发出POST请求时遇到404错误,即使该路由在Postman中有效。
routes.rs
#[post("/letters", format = "application/json", data = "<new_letter>")]
fn write_letter(new_letter: Json<NewLetter>, conn: DbConn) -> Json<Value> {
Json(json!({
"status": Letter::write(new_letter.into_inner(), &conn),
"result": null
}))
}
我已将我的main.rs设置为允许CORS
let (allowed_origins, failed_origins) = AllowedOrigins::some(&["http://localhost:3000"]);
let options = rocket_cors::Cors {
allowed_origins: allowed_origins,
allowed_methods: vec![Method::Get, Method::Put, Method::Post, Method::Delete]
.into_iter()
.map(From::from)
.collect(),
allowed_headers: AllowedHeaders::all(),
allow_credentials: true,
..Default::default()
};
所有路线都在Postman中工作,GET请求可以在我的应用程序中运行。但是,当我尝试从我的应用程序发出POST请求时,我在前端得到一个404并且从我的后端记录了以下内容:
OPTIONS /api/letters:
=> Error: No matching routes for OPTIONS /api/letters.
=> Warning: Responding with 404 Not Found catcher.
=> CORS Fairing: Turned missing route OPTIONS /api/letters into an OPTIONS pre-flight request
=> Response succeeded.
这是我的前端参考:
writeLetter: (letter) => axios.post(`${base_url}/api/letters`, letter)
.then(res => {
if (res.status == 201) {
console.log("letter successfully submitted")
return res
}
throw new Error(res.error)
}),
我是如何实现Axios或rocket_cors的问题?我发现one similar issue但我似乎正在正确配置它。
答案 0 :(得分:0)
我认为我被OPTIONS路线记录的方式所抛弃了。我假设它正在向前端发送404响应,因为行Warning: Responding with 404 Not Found catcher
但它下面的两行表示Response succeeded
所以我在DevTools中挖得更深一些。
OPTIONS发回200响应,因为我只考虑创建的201响应,所以它引发了错误。
我将API更新为
if (res.status == 201 || res.status == 200) {
console.log("letter successfully submitted")
return res
}
这可以防止错误被抛出。