Created a HttpRequester that can be used with axios. Easy to implement another Http client if needed.
We just create a HttpRequester object and call .axiosRequest() and .getAxiosData()
import HttpRequester from './HttpRequester' const axiosRequester = new HttpRequester(); axiosRequester.axiosRequest(this._url); this.data = axiosRequester.getAxiosData();
Generated using TypeDoc
Created a HttpRequester that can be used with axios. Easy to implement another Http client if needed.
We just create a HttpRequester object and call .axiosRequest() and .getAxiosData()
import HttpRequester from './HttpRequester' const axiosRequester = new HttpRequester(); axiosRequester.axiosRequest(this._url); this.data = axiosRequester.getAxiosData();