Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

39. cookie 中有哪些选项 #56

Open
webVueBlog opened this issue Jun 9, 2022 · 0 comments
Open

39. cookie 中有哪些选项 #56

webVueBlog opened this issue Jun 9, 2022 · 0 comments

Comments

@webVueBlog
Copy link
Owner

以下几个选项可用于 cookie,

默认情况下,当浏览器关闭时,cookie 会被删除,但您可以通过设置到期日期(UTC 时间)来更改此行为。

document.cookie = "username=John; expires=Sat, 8 Jun 2019 12:00:00 UTC";

默认情况下,cookie 属于当前页面。但是您可以使用路径参数告诉浏览器 cookie 属于哪个路径。

document.cookie = "username=John; path=/services";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant