Calling Rx.DOM.ajax() with content type set to application/x-www-form-urlencoded and a body such as { name1: "value1&", name2: "value2" } sends the HTTP data as: name1=value1&&name2=value2. This is because the RxJs Ajax code does not URL encode values when converting a object body content to string payload.
Calling
Rx.DOM.ajax()with content type set toapplication/x-www-form-urlencodedand a body such as{ name1: "value1&", name2: "value2" }sends the HTTP data as:name1=value1&&name2=value2. This is because the RxJs Ajax code does not URL encode values when converting a object body content to string payload.