@@ -2,21 +2,23 @@ window.addEventListener('load', async () => {
2
2
/* https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests */
3
3
4
4
const id = Math . round ( Math . random ( ) * 1000 ) ;
5
+ const bytes = 8 ;
6
+ const range = `bytes=0-${ bytes - 1 } ` ;
5
7
6
8
// See if range headers are supported: Accept-Ranges in headers?
7
9
const headResponse = await fetch ( `https://picsum.photos/id/${ id } /100/100` , { method : 'HEAD' } ) ;
8
10
console . log ( headResponse . headers . forEach ( console . log ) ) ;
9
11
10
- const getResponse = await fetch ( `https://picsum.photos/id/${ id } /100/100` , { method : 'GET' , headers : { Range : "bytes=0-255" } } ) ;
12
+ const getResponse = await fetch ( `https://picsum.photos/id/${ id } /100/100` , { method : 'GET' , headers : { Range : range } } ) ;
11
13
const arrayBuffer = await getResponse . arrayBuffer ( ) ;
12
- console . log ( arrayBuffer . byteLength ) ;
14
+ console . log ( String . fromCharCode ( ... new Uint8Array ( arrayBuffer ) ) ) ;
13
15
14
16
const githubPagesUrl = 'https://tomashubelbauer.github.io/fetch-range-request/index.html' ;
15
17
16
18
const githubPagesHeadResponse = await fetch ( githubPagesUrl , { method : 'HEAD' } ) ;
17
19
console . log ( githubPagesHeadResponse . headers . forEach ( console . log ) ) ;
18
20
19
- const githubPagesGetResponse = await fetch ( githubPagesUrl , { method : 'GET' , headers : { Range : "bytes=0-255" } } ) ;
21
+ const githubPagesGetResponse = await fetch ( githubPagesUrl , { method : 'GET' , headers : { Range : range } } ) ;
20
22
const githubPagesArrayBuffer = await githubPagesGetResponse . arrayBuffer ( ) ;
21
- console . log ( githubPagesArrayBuffer . byteLength ) ;
23
+ console . log ( String . fromCharCode ( ... new Uint8Array ( githubPagesArrayBuffer ) ) ) ;
22
24
} ) ;
0 commit comments