在Flask API后端中使用Angular中的cookie

时间:2018-11-09 03:14:13

标签: angular cookies flask flask-sqlalchemy

我正在尝试为带有烧瓶后端的角度应用程序存储会话cookie。在会话中,我设置了以下

this.cookieService.set('loggedIn', true);
this.cookieService.set('username', username);
this.cookieService.set('uid', uid);

,从flask中,我得到一个已登录为true。

当我尝试获取其他任何需要登录的信息时,它说的是None,这是因为浏览器没有在标题中发送任何实际的cookie,因为Angular没有存储任何cookie。

我也在邮递员中对此进行了测试,flask的数据返回了正确的用户。

如何将cookie存储在浏览器中,是否需要从后端发送它?

0 个答案:

没有答案