User61956409 posted
Hi EnenDaveyBoy,
Glad to hear that you solved the problem by yourself.
I will mainly be calling web api's which will be returning json
Both Fetch API and Axios can help make HTTP requests, when working with .fetch() to get the json object response, we make a request first and then the second is to call the .json() method on the response, but if using Axios, the middle step of passing
the results of the http request to the .json() method is not needed. For more comparison between Fetch API and Axios, please check this SO thread.
https://stackoverflow.com/questions/40844297/what-is-difference-between-axios-and-fetch
With Regards,
Fei Han