-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Major issue with this library breaking on Safari #54
Comments
Hey @jerrybendy thanks for getting back to me, I'm using it in this context. var params = new URLSearchParams();
params.append('inputname', 'jerry');
axios.post(url, params, config); I appreciate that I'm not using fetch like in your example above but prior to this update, it all worked perfectly. |
I got your problem and fixed it. You can try Axios using Another mistake is checking |
Amazing, great work @jerrybendy thanks for resolving so quickly! |
Hi there,
We recently upgraded to the newer version 8.2.3 but since upgrading, all POST requests using URL Search Params seem to be sending the data across in JSON as opposed to Form Data like they were previously. Because of this, it causes the browser to break in Safari and post an error.
I was only able to catch this by going through each of my dependencies and finding the root cause.
Thanks in advance but will hardcode our version to 8.1.1 for now as this seems to keep things working.
The text was updated successfully, but these errors were encountered: