73-chrome-2-开发者工具

概述

开发调试工具

功能

Network

1、Disable cache

当勾选了Disable cache,浏览器发送http请求就不会再发送缓存相关的请求头,比如If-Modified-Since、If-None-Match等,即不再使用缓存。

2、connectionId

在name状态栏那一行右击,可以勾选要显示和隐藏的列,选择显示connectionId

connectionId is the unique identifier of the connection used for that query/TCP connection etc. It's a way of evaluating which resources are using which connection.

connectionId是用于该查询/TCP连接等的连接的唯一标识符。它是一种评估哪些资源正在使用哪个连接的方法。

For example:

Name      Connection ID    (TCP Handshake / Reused Connection)
foo.jpg   72218            Handshake
bar.jpg   72218            Reused
cat.jpg   79146            Handshake
baz.jpg   72218            Reused
dog.jpg   79146            Reused