Home Web Front-end JS Tutorial Very good [JS] Cookie Mastery Road Page 1/2_javascript skills

Very good [JS] Cookie Mastery Road Page 1/2_javascript skills

May 16, 2016 pm 07:03 PM

If you have a bad memory like the author, you may not be able to remember people’s names at all. When I meet people, I mostly just nod, ask "Did you eat?", and expect the greeting to end there
. If I needed to express something, then I would have to resort to some cunning techniques to help me figure out who the other person was. For example, talking nonsense about someone related to the other person, no matter how far apart they are, as long as it can avoid the embarrassment of not remembering the other person's name: "How about your next door neighbor's nephew's cute puppy Mephistopheles? "Through this method, I hope to make the other person feel that I really
value him (her) and even remember these trivial things, although in fact I have forgotten even the name. However, it’s not that I don’t pay attention, it’s that my memory is really bad, and there are too many names
to remember. If I could set cookies for everyone, I wouldn't have this memory problem again.

In this article, we are going to learn:

1. What are Cookies?
2. The composition of Cookies
3. Manipulating Cookies
4. Cookie Monster

What are Cookies?

You may ask, what are cookies? A cookie is a small amount of data saved by the browser on the user's computer. It is associated with a specific WEB page or WEB site and is automatically passed between the WEB browser and
WEB server.

For example, if you are running a Windows operating system and use Internet Explorer to surf the Internet, then you will find a subdirectory under your "Windows" directory called
"Temporary Internet Files". If you take a look at this directory at some point, you'll notice that there are files in there with names that look just like email addresses. For example, in the directory
on my machine, there is a file like "jim@support.microsoft.com". This is a cookie file. Where does this file come from? Guess it, it comes from Microsoft’s support site
dot. By the way, this is not my email address, just to clarify.

Cookies are a great solution for managing small, unimportant details that you don’t want to store in a central database. (That’s not to say that everyone’s names don’t matter.) For example, there are currently a growing number of customization services on the site that can customize the content that each user wants to see. If you were designing a site like this, how would you manage the information that one user
likes a green menu bar, while another prefers a red one. A tiring question indeed. However, such information can be safely recorded in cookies and saved on the user's computer, and your own database space can be reserved for longer-term and more meaningful data.

FYI: Cookies are often useful for security purposes. I don’t want to get too deep into this issue here, but just provide an example of how you can use
cookies that expire after a certain period of time to keep your site secure:

1. Using a username and password, pass SSL login.
2. Check the username and password in the server's database. If the login is successful, create a message digest of the current time stamp (such as MD5) and save it in the cookie and server database. Save the user's login time in the user record in the server database.
3. When performing each security transaction (any transaction in which the user is logged in), compare the cookie message digest with the digest stored in the server database. If the comparison fails,
direct the user to Login interface.
4. If the check in step 3 passes, then check whether the elapsed time between the current time and the login time exceeds the allowed time length. If the user has timed out, the user will be directed to the login
interface.
5. If steps 3 and 4 are passed, then reset the login time to the current time and allow the transaction to occur. Most of those secure sites that require you to log in may use a method similar to the one introduced here
.
Composition of Cookies

Cookies were originally designed for CGI programming. However, we can also use Javascript scripts to manipulate cookies. In this article, we will demonstrate how to use Javascript script
to manipulate cookies. (If there is demand, I may introduce how to use Perl for cookie management in a future article. But if you really can’t wait, then I will teach you now:
Take a closer look at CGI.pm. In this CGI package there are A cookie() function can be used to create cookies. However, let us first introduce the nature of cookies.

In Javascript, a cookie is actually a string attribute when you read it. value, you will get a string containing the names and values ​​of all cookies
used by the current WEB page. In addition to the two attributes of name and value, each cookie also has four attributes: expires expiration time, path, domain,
and secure security.Expires – Expiration time. Specify cookie lifetime. Specifically, the value is the expiration date. If you want the cookie to last longer than the current browser session, you must use this attribute
. When the expiration date has passed, the browser can delete the cookie file without any impact.

Path – path. Specify the WEB page associated with the cookie. The value can be a directory or a path. If http://www.zdnet.com/devhead/index.html creates a
cookie, then all pages in the http://www.zdnet.com/devhead/ directory, and any pages under the directory This cookie can be accessed by pages in subdirectories. This means
that any page in http://www.zdnet.com/devhead/stories/articles can access the cookie created by http://www.zdnet.com/devhead/index.html.
However, what should we do if http://www.zdnet.com/zdnn/ needs to access the cookies set by http://www.zdnet.com/devhead/index.html? At this time, we need to set the path attribute of
cookies to "/". When specifying a path, all WEB pages that come from the same server and have the same path in the URL can share cookies. Now look at another
example: If you want http://www.zdnet.com/devhead/filters/ and http://www.zdnet.com/devhead/stories/ to share cookies, you need to set the path to "
/devhead".

Domain – domain. Specify the associated WEB server or domain. The value is the domain name, such as zdnet.com. This is an extension of the path attribute. What if we want
catalog.mycompany.com to be able to access the cookies set by shoppingcart.mycompany.com? We can set the domain attribute to "mycompany.com"
and set the path attribute to " /". FYI: You cannot set the cookies domain attribute to a value different from the domain of the server that sets it.

Secure – safe. Specifies how cookie values ​​are passed between the user and the WEB server over the network. The value of this attribute is either "secure" or empty. By default, this attribute
is empty, which means an insecure HTTP connection is used to transfer data. If a cookie is marked as secure, then data is transferred between it and the WEB server through HTTPS or other secure protocols
. However, setting the secure attribute does not mean that others cannot see the cookies saved locally on your machine. In other words, setting the cookie to secure only ensures that the data transmission process between the cookie and the WEB
server is encrypted, and the cookie file stored locally is not encrypted. If you want local cookies to be encrypted, you have to encrypt the data yourself.




Manipulating Cookies

Remember, a cookie is just a string attribute of the document. To save cookies, just create a string in the format name=

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Where are cookies stored? Where are cookies stored? Dec 20, 2023 pm 03:07 PM

Cookies are usually stored in the cookie folder of the browser. Cookie files in the browser are usually stored in binary or SQLite format. If you open the cookie file directly, you may see some garbled or unreadable content, so it is best to use Use the cookie management interface provided by your browser to view and manage cookies.

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

Where are the cookies on your computer? Where are the cookies on your computer? Dec 22, 2023 pm 03:46 PM

Cookies on your computer are stored in specific locations on your browser, depending on the browser and operating system used: 1. Google Chrome, stored in C:\Users\YourUsername\AppData\Local\Google\Chrome\User Data\Default \Cookies etc.

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

How to create a stock candlestick chart using PHP and JS How to create a stock candlestick chart using PHP and JS Dec 17, 2023 am 08:08 AM

How to use PHP and JS to create a stock candle chart. A stock candle chart is a common technical analysis graphic in the stock market. It helps investors understand stocks more intuitively by drawing data such as the opening price, closing price, highest price and lowest price of the stock. price fluctuations. This article will teach you how to create stock candle charts using PHP and JS, with specific code examples. 1. Preparation Before starting, we need to prepare the following environment: 1. A server running PHP 2. A browser that supports HTML5 and Canvas 3

Where are the mobile cookies? Where are the mobile cookies? Dec 22, 2023 pm 03:40 PM

Cookies on the mobile phone are stored in the browser application of the mobile device: 1. On iOS devices, Cookies are stored in Settings -> Safari -> Advanced -> Website Data of the Safari browser; 2. On Android devices, Cookies Stored in Settings -> Site settings -> Cookies of Chrome browser, etc.

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

Detailed explanation of where browser cookies are stored Detailed explanation of where browser cookies are stored Jan 19, 2024 am 09:15 AM

With the popularity of the Internet, we use browsers to surf the Internet have become a way of life. In the daily use of browsers, we often encounter situations where we need to enter account passwords, such as online shopping, social networking, emails, etc. This information needs to be recorded by the browser so that it does not need to be entered again the next time you visit. This is when cookies come in handy. What are cookies? Cookie refers to a small data file sent by the server to the user's browser and stored locally. It contains user behavior of some websites.

See all articles