form-serialize icon indicating copy to clipboard operation
form-serialize copied to clipboard

Encoding of spaces like +

Open psamusev opened this issue 7 years ago • 0 comments

Inside default str_serializer you convert encoded spaces to '+'. Did you have any big reasons to make it. For me it breaks recognition after navigation to url - I use @angular/router

Broken workflow:

  • If I serialize value='query query' I will get 'query+query' after deserialization
  • If I serialize value='query+query' I will get the same 'query+query' after deserialization but they should be different

psamusev avatar Dec 26 '17 15:12 psamusev