有点新的角色。是否可以使用所包含模板的内容替换 ng-include节点?例如,使用:
<div ng-app>
<script type="text/ng-template" id="test.html">
<p>Test</p>
</script>
<div ng-include src="'test.html'"></div>
</div>
生成的html是:
<div ng-app>
<script type="text/ng-template" id="test.html">
<p>Test</p>
</script>
<div ng-include src="'test.html'">
<span class="ng-scope"> </span>
<p>Test</p>
<span class="ng-scope"> </span>
</div>
</div>
但我想要的是:
<div ng-app>
<script type="text/ng-template" id="test.html">
<p>Test</p>
</script>
<p>Test</p>
</div>
答案 0 :(得分:132)
我遇到了同样的问题,仍然希望ng-include的功能包含动态模板。我正在构建一个动态的Bootstrap工具栏,我需要清洁标记才能正确应用CSS样式。
以下是我为那些感兴趣的人提出的解决方案:
HTML:
<div ng-include src="dynamicTemplatePath" include-replace></div>
自定义指令:
app.directive('includeReplace', function () {
return {
require: 'ngInclude',
restrict: 'A', /* optional */
link: function (scope, el, attrs) {
el.replaceWith(el.children());
}
};
});
如果在上面的示例中使用了此解决方案,则将scope.dynamicTemplatePath设置为“test.html”将导致所需的标记。
答案 1 :(得分:27)
非常感谢@ user1737909,我意识到ng-include不是最佳选择。指令是更好的方法,更明确。
var App = angular.module('app', []);
App.directive('blah', function() {
return {
replace: true,
restrict: 'E',
templateUrl: "test.html"
};
});
在html中:
<blah></blah>
答案 2 :(得分:16)
我遇到了同样的问题,我的第三方css样式表不喜欢额外的DOM元素。
我的解决方案非常简单。只需将ng-include 1向上移动即可。而不是
<md-sidenav flex class="md-whiteframe-z3" md-component-id="left" md-is-locked-open="$media('gt-md')">
<div ng-include="myService.template"></span>
</md-sidenav>
我只是这样做了:
<md-sidenav flex class="md-whiteframe-z3" md-component-id="left" md-is-locked-open="$media('gt-md')" ng-include="myService.template">
</md-sidenav>
我敢打赌,这在大多数情况下都有效,即使技术上不是问题所在。
答案 3 :(得分:10)
另一种方法是编写自己的简单替换/包含指令,例如
.directive('myReplace', function () {
return {
replace: true,
restrict: 'A',
templateUrl: function (iElement, iAttrs) {
if (!iAttrs.myReplace) throw new Error("my-replace: template url must be provided");
return iAttrs.myReplace;
}
};
});
然后按如下方式使用:
<div my-replace="test.html"></div>
答案 4 :(得分:9)
这是替换孩子的正确方法
angular.module('common').directive('includeReplace', function () {
return {
require: 'ngInclude',
restrict: 'A',
compile: function (tElement, tAttrs) {
tElement.replaceWith(tElement.children());
return {
post : angular.noop
};
}
};
});
答案 5 :(得分:3)
以下指令扩展了ng-include本机指令功能。
当内容准备好并加载时,它会添加一个事件监听器来替换原始元素。
以原始方式使用它,只需添加&#34;替换&#34;属性:
<ng-include src="'src.html'" replace></ng-include>
或使用属性表示法:
<div ng-include="'src.html'" replace></div>
这是指令(请记住包含&#39; include-replace&#39;模块作为依赖项):
angular.module('include-replace', []).directive('ngInclude', function () {
return {
priority: 1000,
link: function($scope, $element, $attrs){
if($attrs.replace !== undefined){
var src = $scope.$eval($attrs.ngInclude || $attrs.src);
var unbind = $scope.$on('$includeContentLoaded', function($event, loaded_src){
if(src === loaded_src){
$element.next().replaceWith($element.next().children());
unbind();
};
});
}
}
};
});
答案 6 :(得分:2)
我会选择比@Brady Isom提供的更安全的解决方案。
我更愿意依赖onload
提供的ng-include
选项来确保在尝试删除模板之前加载模板。
.directive('foo', [function () {
return {
restrict: 'E', //Or whatever you need
scope: true,
template: '<ng-include src="someTemplate.html" onload="replace()"></ng-include>',
link: function (scope, elem) {
scope.replace = function () {
elem.replaceWith(elem.children());
};
}
};
}])
不需要第二个指令,因为所有内容都在第一个指令内处理。