You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
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.