Dino Geek, versucht dir zu helfen

Wie mache ich HTTP-Anfragen (GET POST PUT DELETE) in JavaScript?


In JavaScript macht man HTTP-Anfragen über die Fetch API oder mit der Bibliothek Axios.

Hier sind Beispiele, wie Sie GET, POST, PUT und DELETE Anfragen mit der Fetch API verwenden können:

1. GET-Anfrage:
```javascript
fetch(‘http://example.com/movies.json’) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error(error))
```

2. POST-Anfrage:
```javascript
fetch(‘http://example.com/movies.json’, { method: ‘POST’, headers: { ‘Content-Type’: ‘application/json’, }, body: JSON.stringify({title: ‘Movie’, year: ‘2022’}),
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error))
```

3. PUT-Anfrage:
```javascript
fetch(‘http://example.com/movies.json’, { method: ‘PUT’, headers: { ‘Content-Type’: ‘application/json’, }, body: JSON.stringify({title: ‘Movie’, year: ‘2022’}),
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error))
```

4. DELETE-Anfrage :
```javascript
fetch(‘http://example.com/movies.json’, { method: ‘DELETE’,
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error))
```

Bemerkung: Sie sollten wirklich die .catch()-Funktion hinzufügen, sonst werden Fehler nicht aufgefangen und können Ihr Programm zum Absturz bringen.


Erstellen Sie einfach Artikel, um Ihr SEO zu optimieren
Erstellen Sie einfach Artikel, um Ihr SEO zu optimieren





DinoGeek bietet einfache Artikel über komplexe Technologien

Möchten Sie in diesem Artikel zitiert werden? Es ist ganz einfach, kontaktieren Sie uns unter dino@eiki.fr

CSS | NodeJS | DNS | DMARC | MAPI | NNTP | htaccess | PHP | HTTPS | Drupal | WEB3 | LLM | Wordpress | TLD | Domain | 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 |






Rechtliche Hinweise / Allgemeine Nutzungsbedingungen