在HTTP协议中,响应首部 Content-Range
显示的是一个数据片段在整个文件中的位置。
语法
Content-Range: <unit> <range-start>-<range-end>/<size>
Content-Range: <unit> <range-start>-<range-end>/*
Content-Range: <unit> */<size>
指令
- <unit>
- 数据区间所采用的单位。通常是字节(byte)。
- <range-start>
- 一个整数,表示在给定单位下,区间的起始值。
- <range-end>
- 一个整数,表示在给定单位下,区间的结束值。
- <size>
- 整个文件的大小(如果大小未知则用"*"表示)。
示例
Content-Range: bytes 200-1000/67589
规范
浏览器兼容性
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
相关内容
文档标签和贡献者