我有一个外部指令和一个内部指令,这两个指令属于单独的模块。外部指令正在加载而内部指令没有加载模板。
我的代码:
我的html模板
<framework>
<ps-menu></ps-menu>
<framework>
我的指示
angular.module("framework").directive("framework",function(){
return {
transclude:true,
scope:{
},
controller:"frameworkController",
template:"<p>Framework Content</p><div ng-transclude></div>"
}
});
angular.module("menu",[]).directive("menu",function(){
return {
transclude:true,
scope:{
},
controller:"menuController",
template:"<p>Menus Content</p>",
link:function(scope,ele,attr){
}
}
});
这里框架指令正在加载,但是即使我在主应用程序模块中包含了所有这些依赖项,也没有加载menu指令。
有人可以帮忙吗?