2023-02-21 22:34:08 +08:00

24 lines
471 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h1>hello</h1>
<script>
fetch("/movies/coming?cur=1&each=50")
.then(response => {
return response.json()
})
.then((data) => {
console.log(data)
})
</script>
</body>
</html>