What's the best way to chain methods in coffeescript? For example, if I have this javascript how could I write it in coffeescript?

var req = $.get('foo.htm')
  .success(function( response ){
    // do something
    // ...
  })
  .error(function(){
    // do something
    // ...
  });
link|improve this question

72% accept rate
Why did you just ask the same question twice? Please delete one of them. – lwburk Feb 28 '11 at 15:58
1  
Yes, please delete this duplicate. – Trevor Burnham Feb 28 '11 at 16:19
Thanks for noticing the duplicate. SO thought I was a bot and made me jump through a bunch of hoops, and I thought my question got discarded. – nicholaides Feb 28 '11 at 21:18
feedback

3 Answers

up vote 12 down vote accepted

Using the latest CoffeeScript, the following:

req = $.get('foo.html')
  .success (response) ->
    do_something()
  .error (response) ->
    do_something()

...compiles to:

var req;
req = $.get('foo.html').success(function(response) {
  return do_something();
}).error(function(response) {
  return do_something();
});
link|improve this answer
feedback

There are two approaches you can take: The best "literal" translation to CoffeeScript is (in my opinion)

req = $.get('foo.htm')
  .success((response) ->
    # do something
  )
  .error( ->
    # do something
  )

The other approach is to move the inline functions "outline," a style that Jeremy Ashkenas (the creator of CoffeeScript) generally favors for non-trivial function arguments:

onSuccess = (response) ->
  # doSomething

onError = ->
  # doSomething

req = $.get('foo.htm').success(onSuccess).error(onError)

The latter approach tends to be more readable when the success and error callbacks are several lines long; the former is great if they're just 1-2 liners.

link|improve this answer
1  
+1 for the "outline" tip, definitely keeps the code more readable. – Mark Rendle Aug 10 '11 at 12:21
feedback

I sometimes prefer having less parenthesis as opposed to chaining, so I'd modify Trevor's last example:

req = $.get 'foo.htm'
req.success (response) -> # do something
req.error -> # do something
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.