在 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();
});
这篇关于带有函数参数的方法链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!