Files
JavaMyShop/shop_Frontend/static/index.html
2024-09-27 01:16:36 +08:00

28 lines
501 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://cdn.bootcss.com/jquery/2.1.3/jquery.js"></script>
</head>
<body>
<script>
$.ajax({
url: 'http://127.0.0.1:9090/shop/index',
type: 'get',
data: {
page: 1
},
success: function (res) {
console.log(res)
},
error: function (err) {
console.log(err)
}
})
</script>
</body>
</html>