1

Angular 1.5 を使用し、コンポーネント構造でアプリケーションを構築しています。Unknown Providerフックに挿入しようとするとエラーが発生$canActivateします (これは発生しないはずです) コードは次のとおりです。

angular.module("app")
.component("index", {
    templateUrl:"/modules/index-app.component.html",
    $canActivate:function($timeout) { <-- Creates Error
        return $timeout(function() {
            console.log('Timeout fired')
        }, 2000);
    },
    controller:function($timeout, $location, authCookie) {  
        // Set 'this'
        var model = this
    },
    controllerAs:"model",
});

Angular 1.5.3 を実行していますか? フックに注入しないと、すべて正常に実行されます。私は人々の考えを知りたいです:)

4

0 に答える 0