Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用ng2-cookies,从这里可以清楚地看出,expiry 应该是一个数字。
我想将到期设置为浏览器会话 session,就像它出现在开发工具中一样。
session
有什么帮助吗?
如果您希望将 expire 设置为session,您可以发送如下:
Cookie.set('token', user.token);
然后到期将默认设置为会话。至少,这肯定对我有用。
刚刚尝试将 undefined 作为值发送到可选参数expiry并且它起作用了。
expiry
Cookie.set('token', user.token, undefined, '/');