Skip to content

Instantly share code, notes, and snippets.

@fmtarif
Last active August 29, 2015 14:04
Show Gist options
  • Save fmtarif/55383d359d48074a9612 to your computer and use it in GitHub Desktop.
Save fmtarif/55383d359d48074a9612 to your computer and use it in GitHub Desktop.
#ng
$http({
method: 'GET',
url: endpoint,
params: {offset: offset, limit: limit},
/*alt - does the same thing
method: 'POST',
url: endpoint,
data: 'offset='+offset+'&limit='+limit,
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
*/
})
/* shorthand for above
$http.get(endpoint+ '?offset='+offset+'&limit='+limit
)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment