问题
I am migrating an old site to my new Angular CLI project and would like to offer my users a notice.
"This is a new site! To access your old account, go here..."
What I need is a method for the user to close the notice and for it never to return. I am using bootstrap, so the closing part is easy enough... however to persist this I would traditionally use a cookie.
What is the best way to do this in Angular, if cookies are the best way, what component should be used?
Thanks!
回答1:
While cookies are widely used for this purpose, it would not be the right choice. Cookies are meant for data that needs to get to the server with every request.
your best option here is localStorage
look at the API here: https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage
Also look at this quora answer for the difference between sessionStorage, localStorage and cookie. https://www.quora.com/What-is-the-difference-between-sessionstorage-localstorage-and-Cookies
the choice of component is up to you, choose what matches your app.
来源:https://stackoverflow.com/questions/43043205/angular-cli-best-way-to-manage-notices