Currently, I am utilizing XMLHTTPRequest for data posting in JavaScript. Previously, it functioned smoothly on Safari and Chrome browsers up to iOS 13.3.1. However, upon updating to the latest OS version, iOS 13.4.1, an error message stating "XMLHTTPRequest cannot load" appears in the debug console for both Safari and Chrome. Consequently, the functionality is no longer operating as intended.
Upon closer inspection during debugging, I have made the following observations:
- Not all requests are failing; some of them still return a response status of 200. It remains unclear if any particular changes were made specifically in iOS 13.4.1 that could be causing this issue.
- Within my code, I am using
request.open('POST', url, false)
https://i.stack.imgur.com/4fwqP.png
If anyone has insights or solutions to offer, I would greatly appreciate the assistance. Thank you.