Dino Geek, cerca di aiutarti

Come caricare un file JSON da un server in JavaScript?


Utilizzare l’oggetto `fetch` di JavaScript rende il caricamento di un file JSON da un server molto semplice. Ecco un esempio di come si può fare:

```
fetch(‘https://api.mysite.com/data.json’) // Indirizzo del file JSON .then(response => response.json()) // Trasforma la risposta in JSON .then(data => console.log(data)) // Mostra i dati .catch(error => console.error(error)) // Gestisce eventuali errori
```

Nell’esempio sopra, `fetch` invia una richiesta GET all’URL fornito. Restituisce una promessa che si risolve con l’oggetto Response. Quindi, possiamo usare il metodo json() su di esso per ottenere i dati come un oggetto JavaScript.

Se c’è un errore durante l’operazione di fetch, sarà catturato dal blocco catch.

Ricorda che potrebbe essere necessario gestire errori di rete e risposte con uno stato non ok separatamente:

```
fetch(‘https://api.mysite.com/data.json’) .then((response) => { if (!response.ok) { throw new Error(‘Network response was not ok’); } return response.json(); }) .then(data => console.log(data)) .catch(error => console.error(‘There has been a problem with your fetch operation:’, error));
```

In questo esempio, se la risposta non è ok (per esempio, lo stato della risposta non è un successo HTTP 200), lanciamo un nuovo errore che sarà poi catturato dal blocco catch.
Importante notare che fetch() rifiuta solo le promesse con un errore di rete, e non un errore HTTP. Un responso 404 ancora risolve correttamente la promessa e restituisce un oggetto Response con un ok status settato a false.


Genera semplicemente articoli per ottimizzare il tuo SEO
Genera semplicemente articoli per ottimizzare il tuo SEO





DinoGeek offre articoli semplici su tecnologie complesse

Vuoi essere citato in questo articolo? È molto semplice, contattaci a dino@eiki.fr

CSS | NodeJS | DNS | DMARC | MAPI | NNTP | htaccess | PHP | HTTPS | Drupal | WEB3 | LLM | Wordpress | TLD | Nome dominio | IMAP | TCP | NFT | MariaDB | FTP | Zigbee | NMAP | SNMP | SEO | E-Mail | LXC | HTTP | MangoDB | SFTP | RAG | SSH | HTML | ChatGPT API | OSPF | JavaScript | Docker | OpenVZ | ChatGPT | VPS | ZIMBRA | SPF | UDP | Joomla | IPV6 | BGP | Django | Reactjs | DKIM | VMWare | RSYNC | Python | TFTP | Webdav | FAAS | Apache | IPV4 | LDAP | POP3 | SMTP

| Whispers of love (API) | Déclaration d'Amour |






Avviso Legale / Condizioni Generali di Utilizzo