-1
我想導入在外部控制器作用域中聲明的模板文件。我如何獲得標籤中的HTML代碼?如何在Angular.JS指令中導入模板?
JS例
app.directive('memberList', function ($compile,$templateCache) {
..
link : function(scope, element){
/*
I'd like to bring in this section are declared
in the html script tag(listMemberTmp).
*/
};
..
});
HTML Exmplate。
<div member-list></div>
<script type="text/ng-template" id="listMemberTmp">
html code
</script>