This repository has been archived by the owner on Feb 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 248
Remove String requirement for 'data' parameter on Http shortcut methods #1051
Comments
@markovuksanovic You have been working with Http recently; could you take a look at this one? |
mvuksano
added a commit
to mvuksano/angular.dart
that referenced
this issue
May 30, 2014
…e restriction on data being sent. Fixes dart-archive#1051
mvuksano
added a commit
to mvuksano/angular.dart
that referenced
this issue
Jun 3, 2014
…e restriction on data being sent. Fixes dart-archive#1051
mvuksano
added a commit
to mvuksano/angular.dart
that referenced
this issue
Jun 4, 2014
…e restriction on data being sent. Fixes dart-archive#1051
vikraman
pushed a commit
to hackcave/angular.dart
that referenced
this issue
Jun 12, 2014
…e restriction on data being sent. Fixes dart-archive#1051
dsalsbury
pushed a commit
to dsalsbury/angular.dart
that referenced
this issue
Jul 16, 2014
…e restriction on data being sent. Fixes dart-archive#1051
dsalsbury
pushed a commit
to dsalsbury/angular.dart
that referenced
this issue
Jul 16, 2014
…e restriction on data being sent. Fixes dart-archive#1051
mvuksano
added a commit
that referenced
this issue
Aug 5, 2014
…e restriction on data being sent. Fixes #1051
mvuksano
added a commit
that referenced
this issue
Aug 8, 2014
…e restriction on data being sent. Fixes #1051
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The Http.call() method does not have any restriction on the type of the 'data' parameter. This allows interceptors to serialize any data type into any format (by default JSON). But the shortcut methods (post(), put(), ...) impose a String restriction, forcing serialization to be done before calling the method.
The text was updated successfully, but these errors were encountered: