angular.dart
angular.dart copied to clipboard
HTTP Service doesn't support sending FormData
Per HttpRequest docs:
If specified, sendData will send data in the form of a ByteBuffer, Blob, Document, String, or FormData along with the HttpRequest.
The http service only accounts for a handful of the supported types, and will otherwise attempt to serialize the object as json. See here: https://github.com/angular/angular.dart/blob/master/lib/core_dom/http.dart#L71
Was this ever implemented?
Thanks
@chirayuk can you take some time to consider effort and whether this should be part of 1.1 please?