一尘不染

Angular.noop有什么用?

angularjs

我尝试过甚至在Angular.org文档中也到处搜索它,但是找不到关于实现的任何详细说明。如果有什么可以解释的话,那将是非常有用的。


阅读 276

收藏
2020-07-04

共1个答案

一尘不染

angular.noop是一个空函数,当您需要将某些函数作为参数传递时,可以用作占位符。

function foo (callback) {
    // Do a lot of complex things

    callback();
}

// Those two have the same effect, but the later is more elegant
foo(function() {});
foo(angular.noop);
2020-07-04