I am trying to write a post request alongwith handling on error or success in coffeescript in a angularjs controller but not able to do so. Following is what I have tried:
requestData = {url:"www.example.com/Tags", data:pageTags, method:"post"}
request = $http requestData
request.error = (data) ->
alert("failed")
request.success = (data) ->
alert("success")
I can see a network request being made, but the error and success alerts are not seen
Coffee script for you code, try this,