chrome的F12的inspect使用

chrome中查看cookie

https://stackoverflow.com/questions/10014996/how-do-you-check-cookies-using-chrome

To check the current page's cookies using Chrome:

  1. Open Developer Tools (usually F12)
  2. Click the "Application" tab (used to be "Resources")
  3. Expand the "Cookies" list item
  4. Click any list item.

You can view cookies in detail here, and clear them out (click any list item under cookies then click the cancel icon on the bottom left of the table). 

https://developers.google.com/web/tools/chrome-devtools/manage-data/cookies

Use the Cookies pane to view and delete cookies. You cannot modify cookie values.

Cookies are listed by domain. This includes the main document as well as all nested frames. Selecting one of these “frame groups” displays all cookies, for all resources, for all frames in that group. There are two consequences of this grouping to be aware of:

  • Cookies from different domains may appear in the same frame group.
  • The same cookie may appear in several frame groups.

Fields

The following fields are provided for each cookie:

Cookie Field & Description
Name The cookie's name.
Value The cookie's value.
Domain The cookie's domain.
Path The cookie's path.
Expires / Maximum Age The cookie's expiration time, or maximum age. For session cookies, this field is always "Session".
Size The cookie's size in bytes.
HTTP If present, indicates that cookies should be used only over HTTP, and JavaScript modification is not allowed.
Secure If present, indicates that communication for this cookie must be over an encrypted transmission.

 查看Http的header

原文地址:https://www.cnblogs.com/chucklu/p/7810864.html