我正在使用ng2-cookies,从here可以清楚地知道到期时间是一个数字。
我想将expiry设置为 browser-session session
,就像它出现在dev-tools中一样。
任何帮助?
答案 0 :(得分:0)
尝试将undefined作为值发送到可选参数expiry
并且它有效。
Cookie.set('token', user.token, undefined, '/');
答案 1 :(得分:0)
如果您希望将过期设置为会话,则可以按以下方式发送:
Cookie.set('token', user.token);
然后将到期时间设置为 session 作为默认值。至少,这肯定对我有用。