Using $http angular service to make post request in coffeescript

928 Views Asked by At

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

1

There are 1 best solutions below

0
On

Coffee script for you code, try this,

$http.post(
  url: 'www.example.com/Tags'
  data: pageTags).success((data) ->
  alert 'success'
  return
).error (data) ->
  alert 'failed'
  return