我使用 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 ){
}
}
});