1

我使用 Angular ng-view 中的本机指令开发 SPA 来更改视图,问题是其中一个视图有我编写的自定义指令,并且当加载路由时该指令不起作用。

这是应用程序的配置方法和未启动的自定义指令:S

climbingApp.config(
        function( $routeProvider ){
            $routeProvider.

            when('/', {
                controller: 'AppCtrl'
            }).

            when('/newSector', {
                template: '<formNewSector></formNewSector>',
                controller: 'addSector',
            }).

            otherwise({ redirectTo: '/'});
        }
    );


climbingApp.directives

        .directive(
            'formNewSector',
            function() {

                return {
                    restrict: 'E',
                    template: "<div>gato</div>",
                    replace: true,
                    link: function( scope, iElement, iAttrs ){

                    }
                }
    });
4

1 回答 1

3

您在template. 对于命名的指令formNewSector,它应该是<form-new-sector>,而不是<formNewSector>

于 2013-10-15T20:37:15.753 回答