maryluis il y a 4 ans
Parent
commit
39093dda60
1 fichiers modifiés avec 47 ajouts et 0 suppressions
  1. 47 0
      homework15/promise/myFetch.html

+ 47 - 0
homework15/promise/myFetch.html

@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Document</title>
+</head>
+<body>
+    
+    <script>
+
+        function myfetch(url){
+            return new Promise(function (resolve, reject){
+                console.log('panding')
+                const xhr = new XMLHttpRequest()
+                xhr.open('GET', url);
+                xhr.send();
+                xhr.onload = function() {
+                    if (xhr.status != 200) { 
+                        reject("xhr.status != 200")
+                        return
+                    } 
+
+                    resolve(JSON.parse(xhr.response));
+                }
+
+                xhr.onerror = function() {
+                    reject("Error");
+                }
+            })
+        }
+
+        
+
+
+
+        let delay2 = function (f, time) {
+            return new Promise(function (resolve, reject) {
+                console.log("delay starsing")
+                setTimeout(f, time);
+            });
+        }
+        
+        Promise.race([delay2(() => console.log("delay end"), 250), myfetch("https://swapi.dev/api/people/1/").then(luke => console.log(luke))]);
+    </script>
+</body>
+</html>