3

我正在编写很多看起来像这样的代码:

obj.bind( 'event', function(){
    $rootScope.$apply( function(){
        somePromise.resolve();
        doSomething();
    }
} );

我想将其压缩为类似于:

obj.bind( 'event', deferRootScopeApply( function(){
    somePromise.resolve();
    doSomething();
} );

编写一个执行此操作的服务很容易,但我只是想知道是否有更清洁的本地方式。

4

1 回答 1

3

FWIW,这是我的服务:

app.factory( 'rootApply', [ '$rootScope', function( $rootScope ){
    return function( fn, scope ){
        var args = [].slice.call( arguments, 1 );

        // push null as scope if necessary
        args.length || args.push( null );

        return function(){
            // binds to the scope and any arguments
            var callFn = fn.bind.apply(
                  fn
                , args.slice().concat( [].slice.call( arguments ) )
            );

            // prevent applying/digesting twice
            $rootScope.$$phase
                ? callFn()
                : $rootScope.$apply( callFn )
                ;
        }
    };
} ] );

然后返回一个延迟函数或可选地像fn.call

rootApply( someFunction );
rootApply( someFunction, scope, arg1, arg2, arg3 );
于 2013-06-02T03:23:48.133 回答