Struggling to pass decimal values in an AJAX request to a server-side endpoint. Everything runs smoothly except when trying to include a decimal value in the URL. The "." character is recognized as reserved within the URL schema, causing a 404 error. Seeking advice on how to successfully transmit decimal values through an AJAX request.
The current endpoint structure appears as follows: /domain/some-url/?value1=5&value2=2.3 However, using the above URL results in a 404 error. Conversely, changing "value2" to either a whole number or a string yields expected responses. For instance, /domain/some-url/?value1=5&value2=2 provides a successful response.
Might there be a standardized method to address this issue?