我有一个md对话框代码在


 $ scope.showAdvanced = function(ev,category,finalStep,currentStep){&#xA ; $ mdDialog.show({
 controller:DialogEventController,
 templateUrl:'/ app / modules / event / eventCreationSteps.html',
 parent:angular.element(document.body),&# xA; targetEvent:ev,
 clickOutsideToClose:false,
 fullscreen:true,
 locals:{
 category:category,
 finalStep:finalStep,
 currentStep :currentStep,
 storage:null,
}
})
 }



 在这个'/app/modules/event/eventCreationSteps.html'文件中我想用html创建一个文本区域编辑器功能,即使用一些外部Js和css文件,代码在


 < div>
 <字段集>
 < link href =“/ assets / css / info.css”rel =“stylesheet”>
 < link href =“/ assets / css / main.css”rel =“stylesheet”>
 < link href =“/ assets / css / widgContent.css”rel =“stylesheet”>
 < link href =“/ assets / css / widgEditor.css”rel =“stylesheet”>
 < script src =“/ app /../ assets / js / widgEditor.js”>< / script>
 < textarea name =“noise”class =“widgEditor nothing”>文字内容< / textarea>
 < / fieldset>
< / div>



 此代码在其他地方工作但在eventCreationSteps.html中没有文件