LiveScript - 如果有多个回调,如何使用后退调用符?

时间:2013-08-08 10:18:42

标签: javascript livescript

例如:

$.get('/path/to/api').then(
  function(data) {
    alert( "$.get succeeded" );
  }, function(error) {
    alert( "$.get failed!" );
  }
);

是否可以在两个回调中应用回调运算符?

1 个答案:

答案 0 :(得分:7)

您只能使用一个带后退呼叫的功能,但您可以做的是使用后退呼叫,并正常提供其他功能(请注意使用_作为占位符来表示后退呼叫功能的位置参加辩论) - 例如。

data <- $.get '/path/to/api' .then _, -> alert "$.get failed!"
alert "$.get succeeded"

汇编为:

$.get('/path/to/api').then(function(data){
  return alert("$.get succeeded");
}, function(){
  return alert("$.get failed!");
});