gpt4 book ai didi

node.js - 304 not modified in console status 是什么意思?

转载 作者:搜寻专家 更新时间:2023-11-01 00:31:13 24 4
gpt4 key购买 nike

我正在通过简单的聊天学习 node js。这是我的示例代码:

server.js

var mongo = require('mongodb').MongoClient,
client = require('socket.io').listen(8888).sockets;

index.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Node Chat System</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div class="chat">
<input type="text" class="chat-name" placeholder="Enter your name" />
<div class="chat-messages"></div>
<textarea placeholder="Enter your message" ></textarea>
<div class="chat-status">Status: <span>Idle</span></div>
<script src="http://127.0.0.1:8888/socket.io/socket.io.js"></script>
</div>
</body>
</html>

然后我重启 Node 服务器然后我加载我的页面并检查控制台 > 网络选项卡

然后我访问socket.io的状态是这样的:

304 Not Modified

在我的教程中应该是

200 Ok

顺便说一句,我也在使用 wampserver,当我停止所有进程时,效果仍然相同。

你能帮我解决这个问题吗?

最佳答案

在您的特定情况下,node.js 服务器只是告诉浏览器它的 socket.io.js 缓存版本没有过时,因此只需使用它已有的版本缓存。这是可缓存文件的正常预期浏览器行为。如果清除浏览器缓存,重新启动浏览器,然后重复此测试,第一次加载文件时,您应该看到 200 状态(因为缓存为空,浏览器不会发出有条件的 GET 请求)。之后,一旦文件被缓存,你应该再次得到 304。


304 返回状态的描述就在规范中(也是 Google 搜索的第一个结果):

http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.5

10.3.5 304 Not Modified

If the client has performed a conditional GET request and access is allowed, but the document has not been modified, the server SHOULD respond with this status code. The 304 response MUST NOT contain a message-body, and thus is always terminated by the first empty line after the header fields.

The response MUST include the following header fields:

  - Date, unless its omission is required by section 14.18.1 

If a clockless origin server obeys these rules, and proxies and clients add their own Date to any response received without one (as already specified by [RFC 2068], section 14.19), caches will operate correctly.

  - ETag and/or Content-Location, if the header would have been sent
in a 200 response to the same request
- Expires, Cache-Control, and/or Vary, if the field-value might
differ from that sent in any previous response for the same
variant

If the conditional GET used a strong cache validator (see section 13.3.3), the response SHOULD NOT include other entity-headers. Otherwise (i.e., the conditional GET used a weak validator), the response MUST NOT include other entity-headers; this prevents inconsistencies between cached entity-bodies and updated headers.

If a 304 response indicates an entity not currently cached, then the cache MUST disregard the response and repeat the request without the conditional.

If a cache uses a received 304 response to update a cache entry, the cache MUST update the entry to reflect any new field values given in the response.

因此,简而言之,这意味着如果客户端发出条件 GET 请求,则服务器可以返回 304,这意味着内容自上次请求以来未被修改,这是服务器进行通信的一种方式返回给客户端而不再次发送内容。基本上,客户会说“我想知道您是否有此内容的更新版本,这是我已有版本的元数据。如果您没有比我已有的版本更新的版本,那么只需返回 304,否则将更新版本发送给我”。

而且,如果您想了解有关“条件 GET 请求”的更多解释,您可以在这里阅读:https://ruturajv.wordpress.com/2005/12/27/conditional-get-request/


更多细节

如果您清除浏览器缓存然后获取 socket.io.js,您将看到 200 响应状态和如下响应 header :

 ETag: xxxxx

然后,下次您的浏览器请求同一个文件时,它将发送一个条件 GET 请求,请求中包含此 header :

If-None-Match: xxxxx

其中 xxxxx 是两者中相同的字符串。

这是浏览器告诉服务器它已经有了一个带有给定 ETag 的文件版本。然后服务器检查它的文件版本是否是那个 ETag。如果 ETag 匹配,则返回 304。在这种情况下,ETag 用作版本号。在某些情况下,它是文件的哈希值,但在 socket.io.js 的特定情况下,它实际上是一个版本号(因为服务器代码非常了解该特定文件)。

关于node.js - 304 not modified in console status 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33072519/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com