Skip to main content

Questions tagged [axios]

a promise based HTTP client for the browser and node.js

Filter by
Sorted by
Tagged with
1 vote
1 answer
107 views

I have created Axios wrapper following SOLID principles. Is there any feedback on improving it's structure in a more cleaner and better way? axiosconfig.ts ...
C Sharp Guy's user avatar
0 votes
1 answer
690 views

I trying to upload multiple images about (5000 of size upto 50mb) and trying to figure out what would be the best way to do it. right now i have this code: ...
code0x00's user avatar
  • 101
4 votes
1 answer
964 views

I'm building a full stack exercise app and some of my objects include routines, exercises, exercise sets etc. Instead of writing out specific get, post, put and delete requests for each resource, I ...
gCoder's user avatar
  • 43
3 votes
0 answers
88 views

I made a helper function for drawing the map(OpenLayers). Then I made another helper function for fetch(axios.get) the map URL. ...
Ye Cai's user avatar
  • 31
4 votes
1 answer
765 views

Description I've developed an application which use axios to communicate with the PayPal API. PayPal has a NodeJS SDK, but unfortunately this doesn't support the ...
sfarzoso's user avatar
  • 117
4 votes
1 answer
6k views

I have a form built with react, formik and yup, and this form has some async validations. Apparently, some users were able to bypass these validations, and to prevent some errors, I wanted to disable ...
sergioviniciuss's user avatar
-1 votes
1 answer
1k views

Using visual studio I created a snippet which helps me surround my already written or new code into a try-catch-finally block. I use axios for REST so there had to be separate error handling method so ...
Suleman's user avatar
  • 169
5 votes
3 answers
936 views

In React, it is quite common for me to have something similar to the following. ...
Marcel's user avatar
  • 137
3 votes
1 answer
456 views

I have put together this small application which displays data from a JSON file known as "Users" in an HTML5 table. I use Bootstrap 3, Axios and Vue.js 2 for this purpose. Here is the code: ...
Razvan Zamfir's user avatar
4 votes
1 answer
167 views

I'm using Axios to fetch data from an API, and don't know if this is the best way to deal with APIs in ReactJS or not. I want to know if anyone can suggest edits or something to make the code more ...
gretty volk's user avatar