Video 57: Browser HTTP Requests with Fetch
This commit is contained in:
@@ -1 +1,12 @@
|
||||
console.log('Client side javascript file is loaded!')
|
||||
|
||||
fetch('/weather?address=boston').then((response) => {
|
||||
response.json().then((data) => {
|
||||
if (data.error) {
|
||||
console.log(data.error)
|
||||
} else {
|
||||
console.log(data.location)
|
||||
console.log(data.forecast)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user