方法
常數
HTTP_IF_MODIFIED_SINCE | = | "HTTP_IF_MODIFIED_SINCE" |
HTTP_IF_NONE_MATCH | = | "HTTP_IF_NONE_MATCH" |
實例公開方法
etag_matches?(etag) 連結
fresh?(response) 連結
檢查回應的新鮮度(Last-Modified
和 ETag
)相對於請求的 If-Modified-Since
和 If-None-Match
條件。如果同時提供這兩個標頭,則根據設定,ETag
優先於 Last-Modified
,或兩者一視同仁。你可以使用 config.action_dispatch.strict_freshness
調整偏好設定。參考: tools.ietf.org/html/rfc7232#section-6
# File actionpack/lib/action_dispatch/http/cache.rb, line 45 def fresh?(response) if Request.strict_freshness if if_none_match etag_matches?(response.etag) elsif if_modified_since not_modified?(response.last_modified) else false end else last_modified = if_modified_since etag = if_none_match return false unless last_modified || etag success = true success &&= not_modified?(response.last_modified) if last_modified success &&= etag_matches?(response.etag) if etag success end end