I have a string in JS side which is url.QueryEscape
d.
Spaces were replaced with + sign by url.QueryEscape
. They don't get converted back to space in decodeURIComponent
. Should I manually do a string replace all + with space? What is the right way to decode it?