下面是我编写的一个简单指令,用于在脚本元素中插入一个本地存储的 HTML 块。
以下是它的使用方法:
<body>
<div my-partial="partial1"></div>
</body>
<script id="partial1" type="text/html">
<div>
<button ng-click="OK()">OK</button>
</div>
</script>
代码确实做了我想要的,但我看到当部分模板使用指令替换元素时,它上面有ng-scope
类。这让我觉得创建了一个新的范围,但这不是我的意图。我只是希望插入 HTML 并成为现有范围的一部分。
为什么会这样?
这是指令:
app.directive("myPartial", ["$compile", function ($compile)
{
var def =
{
restrict: 'A',
scope:false,
compile: function (element, attributes, transclude)
{
var tmplID = attributes.myPartial, //Get templateID
markup = $("#" + tmplID).html(), //Load partial template markup <text node>
partial = $("<div>").html(markup); //Stick markup text into a <div> so it'll become real DOM elements
partial = partial.contents(); //Don't need that outer <div> anymore
if (!partial.length) { throw "myPartial: " + tmplID + " not found"; }
//Replace this element w/ the partial template markup
element.replaceWith(partial);
//PostLink
//---------------------------------------------------------------------
return function postLink(scope, element, attributes, modelController)
{
//Compile the partial and link it w/ the current scope
$compile(partial)(scope);
}
}
};
return def;
}]);
感谢您提供任何帮助或建议的代码改进。