27 lines
595 B
HTML
27 lines
595 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<img src=http://localhost:5000/hit/index.html style="visibility:hidden">
|
||
|
<p id="allhits"></p>
|
||
|
<p><a href="http://localhost:3000/user">user</a></p>
|
||
|
<script>
|
||
|
const hits = document.getElementById('allhits');
|
||
|
fetch('http://localhost:5000/hits/index.html').then((resp) => {
|
||
|
return resp.text();
|
||
|
}).then((data) => {
|
||
|
console.log(data);
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|