서비스 워커 (1) 썸네일형 리스트형 [Service Worker] PWA 기본 등록하고 캐시 다루기 index.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 Click me! var textfile = []; window.onload = () =>{ // 초기 페이지 생성 시 이벤트 const fileUrl = [ '/text/1.txt', '/text/2.txt', '/text/3.txt' ]; fileUrl.forEach(element => { fetch(element) .then(r => r.text()) .then(.. 이전 1 다음