React Using APIs: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
Line 4: Line 4:
When using API here is where you should call the APIs<br>
When using API here is where you should call the APIs<br>
[[File:React API Calls.png|400px]]
[[File:React API Calls.png|400px]]
=API for calling APIs=
There were 4 options offered.
*Fetch API (Newish but OK)
*Axios (Believe it is popular and have used)
*JQuery (Never used)
*XMLHttpRequest (old and liked - no surprise there)

Revision as of 06:04, 23 June 2021

Introduction

This page is for how to use APIs with React.

When to call APIs

When using API here is where you should call the APIs

API for calling APIs

There were 4 options offered.

  • Fetch API (Newish but OK)
  • Axios (Believe it is popular and have used)
  • JQuery (Never used)
  • XMLHttpRequest (old and liked - no surprise there)