introductionAs I get to know the front end more and more deeply, I have learned about many browser storage solutions, such as Cookies, LocalStorage, etc. What are the similarities and differences between these storage solutions, and what are their respective applicable scenarios? CookieSources of Cookies Cookies were not originally created for local storage, but to identify users. As we all know, the Http protocol is stateless, which means that every request you send to the server is isolated to the server, and the server does not know who these requests come from. For example, you added some items to the shopping cart, but when you sent the checkout request, the server was confused. How can I know who you are and what you bought? After using Cookies, the server can determine the sending user by checking the Cookie. To a certain extent, Cookies can be said to be the identity card of the request. It can tell the server who the request was sent from. What are CookiesSeeing is believing, let’s take a look at what Cookie looks like This is the cookie used by Baidu's homepage. As you can see, the cookie is stored in the browser as a Name-Value pair, where the Value is obviously encrypted data. Cookie generation methodThe cookie belongs to the domain name, or the cookie of Baidu homepage. Through the Domain attribute, we can know that the first two cookies belong to .baidu.com Each domain name can only set and access cookies under its own domain name. For example, baidu.com cannot access cookies with the domain sougou.com. However, the subdomain can read the cookies set by the parent domain. For example, in the screenshot, www.baidu.com reads the cookie with Domain='.baidu.com'. By manually setting the Domain, you can set the cookie of the parent domain. For example, www.baidu.com can set Domain='baidu.com' so that all subdomains of *.baidu.com can also read the cookies it sets. //www.baidu.com document.cookie='age=20;domain=.baidu.com' // At this time, all second-level domain names can directly read this cookie Cookies are generated in two ways: server-side generation and browser-side generation. Server side - by setting the set-cookie in the HTTP response header We can specify the cookie value to be stored through the Set-Cookie in the response header. When the request returns to the browser, the browser will set the cookie according to the set-cookie value in the header. By default, Domain is set to the host name of the page that sets the cookie. Of course, we can also manually set the Domain value.
In the browser-js, you can read and write cookies through document.cookie and display them in the form of key-value pairs document.cookie="id=a3fWa" document.cookie='age=20;domain=.baidu.com' Application scenarios of CookiesSince the function of cookies is to tell the server who the request comes from, its main function is to keep the user logged in (remember the password). In addition, it can also record user browsing data, push advertisements and the shopping cart mentioned above. Disadvantages of CookiesThe shortcomings are actually very obvious in the previous article. Not big enough Cookies are sent with every request, which means that there must be a strict size limit for cookies. The size of each cookie is limited to 4kb. It is worth noting that 4kb refers to the size of a Name-Value, not that the total size of cookies that can be set for this domain is only 4kb. Performance drawbacks Cookies follow the domain name and will be sent with every request to the same domain name. However, a large number of requests, such as requests for static resources such as images, do not require cookies at all. Although each cookie is only 4kb, a small amount of it will result in a huge waste of resources. We can put static resources on CDN. At this time, the image domain name is different from the main site domain name, and no cookies will be sent. Not safe enough Just as we can see the cookies by directly opening the console, although the cookies are encrypted through encoding, they are transmitted in plain text during HTTP transmission. The script can also easily obtain the cookies, which is very easy to be cracked. When setting a cookie on the server side, attach the HttpOnly tag so that the browser cannot access the cookie using document.cookie
Cookies marked as Secure should only be sent through Https protocol encrypted requests, but even so, cookies should not be used to store sensitive information, because cookies are inherently insecure, and these two tags cannot provide definite security guarantees. WorkaroundSince Cookies have so many shortcomings, is there any permanent solution? That is "professional people do professional things". The task of storing user login status and some user information is handed over to Seesion --- that is, Cookie is only used to store a unique user identifier, and the real information is stored on the server side. Cookie is used as SeesionID to search for information on the server. In this way, the capacity limitation of Cookie and security issues are solved, because at this time the Cookie contains a string of meaningless random codes. The task of local storage is handed over to the new local storage solution "Web Storage" in HTML5, which is divided into two categories: localStorage and SessionStorage. Next, I will introduce these two brothers. LocalStorageFeatures
Usage ExamplesLocalStorage is very convenient to use: // Set data localStorage.setItem("key","value"); //Read data let valueLocal = localStorage.getItem("key"); Usage scenariosFrom the above features, we can see that LocalStorage is very suitable for local caching and can increase the loading speed of the first screen. Some large resources that do not change frequently, such as pictures, can also be cached to reduce network requests. SessionStorageFeatures
Usage scenariossessionStorage is more suitable for storing lifecycle and session-level information that is synchronized with it. This information is only applicable to the current session. For example, it can be used to persist form data to prevent form data from being lost after refreshing. Differences between Cookies, LocalStorage, and SessionStorageDifferences in scopeAll three follow the protocol, that is, the same data can be accessed and modified under the same protocol, the same domain name, and the same port. The only difference is that SeesionStorage also requires the same window. Differences in life cycle
SummarizeThese are several browser storage solutions. Of course, we should decide when to use which solution based on the characteristics of each solution. The most suitable one is the best. Summarize the key points of this article
The above is a detailed explanation of the details stored by JS browsers. For more information about JS browser storage, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Winows Server 2019 Activation Code & Volume License Edition KMS Installation Key GVLK
>>: Solution to the failure of MySQL service startup during MySQL 5.7.18 installation
Table of contents 1. Array flattening (also known...
Which historical version can the current transact...
as follows: -m, --memory Memory limit, the format...
Preface By default, MySQL will initialize a large...
The default port number of the Windows server rem...
Table of contents Preface 1. Application componen...
The <abbr> and <acronym> tags represen...
Good morning everyone, I haven’t updated my artic...
When programmers do TypeScript/JavaScript develop...
Website link: http://strml.net/ By Samuel Reed Ti...
I knew before that to synchronously obtain the re...
Table of contents 1. What is multi-instance 2. Pr...
In the XHTML language, we all know that the ul ta...
Preface: In MySQL, the CONCAT() function is used ...
The performance of your website or service depend...