[S8L4] Post, Put, Delete Axios Flashcards

1
Q

Was ist ein Post Request?

A
  • Das C in CRUD für CREATE

- Ein POST Request sagt dem Server, dass etwas erstellt, geaddet oder neue Daten erstellt werden sollen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Wie sieht ein Post Request in Axios aus?

A
axios
.post('URL', { someDate: myData })
.then(response => {
//do something
})
.catch(err => {
//do something
});
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Was ist ein PUT Request?

A
  • PUT Request ist das U in CRUD und steht für UPDATE-

- Daten des Servers sollen verändert werden

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Wie sieht ein PUT Request in Axios aus?

A
axios
.put('URL', { someDate: myData })
.then(response => {
//do something
})
.catch(err => {
//do something
});
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Was ist ein DELETE Request?

A
  • Das D in CRUD für DELETE

- Sagt dem Server, dass etwas gelöscht werden soll

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Wie sieht ein DELETE Request in Axios aus?

A
axios
.delete('URL/${someDynamicID}')
.then(response => {
//do something
})
.catch(err => {
//do something
});
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Wie bekommt man Daten von Childs wieder nach oiben zu Parent Components?

A

-Durch Callback Functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly