我有一个指令应该将SVG元素附加到指令元素
.directive('aSvg', function ($compile) {
return {
restrict: 'E',
replace: true,
link: function (scope, element, attrs) {
var svgTag = angular.element('<svg viewBox="0 0 4000 2000" version="1.1"><defs><marker id="StartMarker" viewBox="0 0 12 12" refX="12" refY="6" markerWidth="3" markerHeight="3" stroke="green" stroke-width="2" fill="none" orient="auto"><circle cx="6" cy="6" r="5"></circle></marker><marker id="MidMarker" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="3" markerHeight="3" stroke="lightblue" stroke-width="2" fill="none" orient="auto"><path d="M 0 0 L 10 10 M 0 10 L 10 0"></path></marker><marker id="EndMarker" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="3" markerHeight="3" stroke="red" stroke-width="2" fill="none"><rect x="0" y="0" width="10" height="10"></rect></marker></defs><path d="M 200 250 L 700 100 L 900 350 L 1200 400 L 1300 200 L 1700 680 L 2200 680 L 2600 400" fill="none" stroke="black" stroke-width="50" marker-start="url(#StartMarker)" marker-mid="url(#MidMarker)" marker-end="url(#EndMarker)"></path><path d="M 1000 750 S 2000 750 2500 1250 S 1200 1000 1300 1400 S 1700 1480 1900 1200" fill="none" stroke="tomato" stroke-width="50" marker-start="url(#StartMarker)" marker-mid="url(#MidMarker)" marker-end="url(#EndMarker)"></path></svg>');
$compile(svgTag)(scope);
angular.element(svtTag).appendTo(element[0]);
}
};
});
在html中,我将指令作为元素:
<body>
<div>
<a-svg></a-svg>
</div>
</body>
然而,SVG无法正确渲染,只显示2行(黑色和橙色),但没有渲染的标记。示例中使用的SVG似乎是正确的,因为如果我将它保存到文件中它会正确呈现,但由于某种原因它在AngularJS中不起作用。
我在这里缺少什么?
提前致谢。
编辑1:我使用的是AngularJS v1.2.20,我尝试使用v1.3.0,但仍然遇到同样的问题。
答案 0 :(得分:5)
经过更多的研究后,我发现问题出现在Angular路由中,更具体地说是在<base href='/'>
标记中,它正在弄乱SVG标记中定义的链接。
我通过更改每个路径的标记属性中的网址解决了我的问题(请注意marker-start
,marker-mid
和marker-end
属性中的 / myroute ):
<path d="M 200 250 L 700 100 L 900 350 L 1200 400 L 1300 200 L 1700 680 L 2200 680 L 2600 400" fill="none" stroke="black" stroke-width="50" marker-start="url(/myroute#StartMarker)" marker-mid="url(/myroute#MidMarker)" marker-end="url(/myroute#EndMarker)"></path>
有关详细信息,建议您阅读问题here的已接受答案。