iron-ajax
iron-ajax copied to clipboard
Easily make ajax requests
Fetch is better is a better API, and I like to see how you would implement it instead of the olderxmlhttp requests.
### Description I can see two calls in network tab of dev tools using iron-ajax. If I remove the headers attribute from iron-ajax than I can only see single call...
### Description When using relative paths the absolute URL of a generated request seems to be different depending on whether data binding is used. When using data binding the absolute...
### Description In following hierarchy: CustomComponent1 |CustomComponent2 ||iron-ajax iron-ajax emits response event on parent component(CustomComponent2) with bubbles set to false. ### Expected outcome not bubble event. ### Actual outcome unexpected...
Similar to that of iron-form's presubmit event, I think it would be useful for iron-ajax to be able to allow intercepting the request before sending or for us to have...
Wouldn't implementing multipart/form-data be rather trivial? The [current code](https://github.com/PolymerElements/iron-ajax/blob/master/iron-request.html#L385-L397) reads: ``` javascript _encodeBodyObject: function(body, contentType) { if (typeof body == 'string') { return body; // Already encoded. } var bodyObj...
Correctly Url Encode arrays in iron-request when content-type is x-www-form-urlencoded
Our build system started to fail today because of sha256 mismatch, has there been any package re-upload ? ``` output path '/nix/store/4i70yqy79c4p20f7121i0gs1vmcsnipk-iron-ajax-1.4.3' has r:sha256 hash '1b1z3112ggjdflgrwbpmnbsh3kgcm4hn255wshvrlzds4w069gja' when '0m3dx27arwmlcp00b7n516sc5a51f40p9vapr1nvd57l3i3z0pzm' was expected...
### Description I'm using Polymer 2.0 web components on my Django Project. I needed to make a POST request to my views.py but I'm getting a 403 Error (Forbidden) because...
### Description Specifying a `Content-Type` header of `application/vnd.foo.bar-v1+json` and setting the `body` of an `iron-ajax` to an object is not supported. As per https://tools.ietf.org/html/rfc6839 section 3: > [RFC4627] defines the...