Malý repozitář do hodin WTL pro 3.J skupinu WEB
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
446 B

<!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>
<h1>Test Fetch()</h1>
<script>
//potřeba zapnout web server
// nejjednoduší s pythonem -> python -m http.server
let file = "./text.txt"
fetch(file).then(x => x.text()).then(x => console.log(x));
</script>
</body>
</html>