Fetch Flashcards

1
Q

What does fetch( ) return?

A

returns a promise that is fulfilled once the response is available.
only rejects when a network error is encountered.
fetch promise does not reject on http errrors

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

What is the default request method used by fetch()?

A

GET

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

How do you specify the request method (GET, POST, etc.) when calling fetch?second

A

you can add a second parameter after the url which is an object that has a method property with a value of “GET”, “POST”, etc.

fetch( ‘url/.com’, { method: “POST” } );

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

When does React call a component’s componentDidMount method?

A

componentDidMount is called immediately after a component is mounted.
after the first succesful render( ).

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

Name three React.Component lifecycle methods.

A

constructor( )
render( )
componentDidMount( )
componentDidUpdate( )
componentWillUnmount( )

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

How do you pass data to a child component?

A

Props

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