Dmitriy Mozgovoy

Results 106 comments of Dmitriy Mozgovoy

Thanks for the report. This issue is fixed in [1.0.0-alpha.1](https://www.npmjs.com/package/axios/v/1.0.0-alpha.1)

Yes, the current Axios cancellation API has race conditions due to the asynchronous nature of CancelToken, since it uses Promises internally, so the internal abort method of the XMLHTTPRequest can...

@9mm Unfortunately no. `cp-axios` only fixes CancelToken memory leak by using alternative cancellation API and supports a custom promise API ([CPromise](https://www.npmjs.com/package/c-promise2)) that provides cancellation/retries/progress capturing/etc. for use in complex async...

@zhangzhiqiangcs It looks like this is some kind of problem with your backend (proxy/server). You can simply use your network console to make sure that the Axios connection is aborted...

This behavior is implemented in v1.0.0-alpha.1. https://github.com/axios/axios#-automatic-serialization-to-formdata

Alpha is not inherently stable, although this also applies to pre-1.0.0 versions that people have been using in production for years. In other words, the alpha label is a sign...

Solving the issue that can occur in the ReactNative environment is difficult, as it seems that none of the contributors use RN in their daily work in order to be...

@zaubara thanks! It seems we need an additional test since it's not a typical problem with FormData instance detection. One more test: ```js function isStandardBrowserEnv() { let product; if (typeof...

If the issue is with the xhr adapter, then the problem is not with Axios itself, but with the implementation of `XMLHttpRequest` on the target platform. The problem may occur...

@aza547 Yes, you need to disable redirects if you are uploading large data, since stream buffering is enabled to be able to resend the data in case of a redirect....