a1/fetch.js

7 lines
146 B
JavaScript
Raw Normal View History

2024-05-20 05:14:55 +00:00
const url = "http://localhost/p20/get.php"
2024-05-15 10:24:25 +00:00
2024-05-20 05:14:55 +00:00
fetch(url)
2024-05-15 10:24:25 +00:00
.then(response => response.json())
2024-05-20 05:14:55 +00:00
.then(data => {
2024-05-15 10:24:25 +00:00
console.log(data)
})