What is the best method to use a $http service in angular JS? How can we achieve the promise paradigm and do the best Any help would be appreciated.
I have gone thru the API developer's guide and found the following..
$http.get(url)
I was wondering what would the promise call would look like and how do i attach a callback function to this??

method: GETis already defined for you. So, any $http() examples you see in the docs that use promises also apply to $http.get(). – Mark Rajcok Jan 29 at 22:43