-
Notifications
You must be signed in to change notification settings - Fork 0
Networking
Dominic Valenciana edited this page Nov 18, 2016
·
1 revision
$http({
method: string,
url: string,
data: string|object,
dataType: string,
success: function(response: object?),
error: function(response: object?)
});
All ajax calls are done asynchronously and all functions are treated like callbacks.
###method
Argument used to define type of network request to be made.
Acceptable Input: GET
, PUT
, POST
, DELETE
and JSONP
.