我是在angularjs中创建一个指令。我需要添加
 nsPopover 
在里面。但nsPopover需要将popover内容作为< script type =“text / ng-template”
标记内的模板。我可以在指令模板中添加< script type =“text / ng-template”
,例如
template:[' < div class =“myClass”>',
'< script type =“text / ng-template”id =“price_actionPopup”>',
'< div class =“triangle “>< / div>',
'< / script>',



 当我添加时,它只是在页面中打印< div class =“triangle”>< / div>
。我需要添加一些内容吗?