Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7ed108e

Browse files
committedJun 6, 2020
add cookie path
1 parent cc4cfa9 commit 7ed108e

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 insert_cookie(_req: Request<()>) -> tide::Result {
1216
let mut res = tide::Response::new(StatusCode::Ok);
13-
res.insert_cookie(Cookie::new("hello", "world"));
17+
res.insert_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)
Please sign in to comment.