Skip to content

Commit cd3caa5

Browse files
add cookie path
1 parent f884167 commit cd3caa5

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

examples/cookies.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,22 @@ use tide::{Request, StatusCode};
55
/// Tide will use the the `Cookies`'s `Extract` implementation to build this parameter.
66
///
77
async fn retrieve_cookie(cx: Request<()>) -> tide::Result<String> {
8-
Ok(format!("hello cookies: {:?}", cx.cookie("hello").unwrap()))
8+
if let Some(cookie) = cx.cookie("hello") {
9+
Ok(format!("hello cookies: {:?}", cookie))
10+
} else {
11+
Ok("cookies not found. navigate to /set or /remove".to_owned())
12+
}
913
}
1014

1115
async fn set_cookie(_req: Request<()>) -> tide::Result {
1216
let mut res = tide::Response::new(StatusCode::Ok);
13-
res.set_cookie(Cookie::new("hello", "world"));
17+
res.set_cookie(Cookie::build("hello", "world").path("/").finish());
1418
Ok(res)
1519
}
1620

1721
async fn remove_cookie(_req: Request<()>) -> tide::Result {
1822
let mut res = tide::Response::new(StatusCode::Ok);
19-
res.remove_cookie(Cookie::named("hello"));
23+
res.remove_cookie(Cookie::build("hello", "").path("/").finish());
2024
Ok(res)
2125
}
2226

0 commit comments

Comments
 (0)