axios-docs
axios-docs copied to clipboard
Official documentation for the axios HTTP library
In this PR, I have updated the documentation to accurately reflect the correct configuration for paramsSerializer. I have replaced the outdated code block with the correct configuration as shown above....
https://github.com/axios/axios-docs/blob/master/posts/en/req_config.md?plain=1#L56 **Describe the bug** The documentation currently states that `paramsSerialization` is ... ```js paramsSerializer: function (params) { return Qs.stringify(params, {arrayFormat: 'brackets'}) }, ``` However, after upgrading the correct configuration is...
Fixed typo in multipart docs page.
Section/Content To Improve On the documentation page for Multipart Bodies (https://axios-http.com/docs/multipart) there is a line that reads: "HTML form can be passes directly as a request payload" image  Suggested...
Type Error: - THTML form can be passed directly as a request payload
changed-passes-to-passed Fixed #5847
Fixed a typo in posts/en/multipart.md closes #133
### What change does this PR introduce? This PR Fixes #133 typo in multipart docs page in `posts/en/multipart.md`
Fixed a typo in Multipart bodies #5847.