可以通过查看git blamecompile.js
来找到答案:添加的提交futureParentElement
是https://github.com/angular/angular.js/commit/ffbd276d6def6ff35bfdb30553346e985f4a0de6
在提交中有一个测试指令的测试svgCustomTranscludeContainer
directive('svgCustomTranscludeContainer', function() {
return {
template: '<svg width="400" height="400"></svg>',
transclude: true,
link: function(scope, element, attr, ctrls, $transclude) {
var futureParent = element.children().eq(0);
$transclude(function(clone) {
futureParent.append(clone);
}, futureParent);
}
};
});
通过测试编译 html 的<svg-custom-transclude-container><circle cx="2" cy="2" r="1"></circle>
行为:
it('should handle directives with templates that manually add the transclude further down', inject(function() {
element = jqLite('<div><svg-custom-transclude-container>' +
'<circle cx="2" cy="2" r="1"></circle></svg-custom-transclude-container>' +
'</div>');
$compile(element.contents())($rootScope);
document.body.appendChild(element[0]);
var circle = element.find('circle');
assertIsValidSvgCircle(circle[0]);
}));
因此,如果您正在创建一个带有指令的 SVG 图像,该指令的模板将嵌入的 SVG 内容包装在<svg> ... </svg>
标签中,那么如果您没有将正确的传递futureParentElement
给$transclude
.
除了源代码中的测试之外,试图了解无效的实际含义,我基于单元测试中的指令创建了 2 个指令,并使用它们尝试创建带有部分圆形的 SVG 图像。一个使用futureParentElement
:
<div><svg-custom-transclude-container-with-future><circle cx="1" cy="2" r="20"></circle></svg-custom-transclude-container></div>
和一个相同但不同的:
<div><svg-custom-transclude-container-without-future><circle cx="2" cy="2" r="20"></circle></svg-custom-transclude-container></div>
正如可以在http://plnkr.co/edit/meRZylSgNWXhBVqP1Pa7?p=preview看到的那样,有的futureParentElement
显示部分圆圈,而没有的则没有。DOM 的结构看起来相同。然而,Chrome 似乎报告第二个circle
元素不是 SVG 节点,而是纯 HTML 节点。
因此,无论在幕后futureParentElement
实际做了什么,它似乎都确保了嵌入的 SVG 内容最终被浏览器作为 SVG 处理。