I'm using the Angular version 12 I want to send the following object in query params:
{
dynamicQueryOperators: 6&dynamicQueryOperators=8
}
But in the end, the URL that is sent to the server is like this Request URL:
...dynamicQueryOperators=6**%26**dynamicQueryOperators=8
How can I prevent "&" from changing to "%26"?
decodeURIComponentat the other end. for exampledecodeURIComponent("you %26 me") == 'you & me'