带有函数参数的方法链接

2022-01-24 00:00:00 syntax javascript coffeescript

在 CoffeeScript 中链接方法的最佳方式是什么?例如,如果我有这个 JavaScript,我怎么能用 CoffeeScript 编写它?

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
    // ...
  });

推荐答案

使用最新的CoffeeScript,如下:

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

...编译为:

var req;
req = $.get('foo.html').success(function(response) {
  return do_something();
}).error(function(response) {
  return do_something();
});

相关文章