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