File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,22 @@ use tide::{Request, StatusCode};
5
5
/// Tide will use the the `Cookies`'s `Extract` implementation to build this parameter.
6
6
///
7
7
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
+ }
9
13
}
10
14
11
15
async fn set_cookie ( _req : Request < ( ) > ) -> tide:: Result {
12
16
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 ( ) ) ;
14
18
Ok ( res)
15
19
}
16
20
17
21
async fn remove_cookie ( _req : Request < ( ) > ) -> tide:: Result {
18
22
let mut res = tide:: Response :: new ( StatusCode :: Ok ) ;
19
- res. remove_cookie ( Cookie :: named ( "hello" ) ) ;
23
+ res. remove_cookie ( Cookie :: build ( "hello" , "" ) . path ( "/" ) . finish ( ) ) ;
20
24
Ok ( res)
21
25
}
22
26
You can’t perform that action at this time.
0 commit comments