jQuery AJAX is converting the string escape from %20 to +

132 Views Asked by At

I have a jQuery AJAX function that saves an image path to the database. Here is an examples parameter:

var data = {};
data['url'] = "Path%20to%20URL";

If there is a space or %20, it will be saved as "Path%20to%20URL" in the database. I haven't changed anything to my code but now, it is saved as "Path+to+URL". Any Idea what's the cause of this?

I already tried to use

str.replaceAll('+', '%20')

in my code just in case it is caused by another function. but no luck.

Here is my jQuery AJAX:

$.ajax({
      url: `server-url`,
      type: 'PUT',
      headers: {
        //auth keys
        'Content-Type': 'application/json'
      },
      data: JSON.stringify(data),
      success: () => {
1

There are 1 best solutions below

2
On

"Path%20to%20URL", this is the encoded type of path in HTML. You can use decodeURI() function in this case.

var data = {};

data['url'] = "Path%20to%20URL";
console.log(decodeURI(data['url']));

//"Path to URL"