plus character is converting to space character when using HttpParams() in angular 6.
Is there any solution like using other methods in angular for setting http request params without encoding the stringified json or without replacing + with %2B .
this.http.post(URl, testReqFormat, { headers: headers }).subscribe(
data => {
console.log("Test request success :: ", data);
},
error => {
console.log("Test request failed :: ", error);
});