ng-bind-html で挿入された要素の ng-attr をどのように評価しますか? 私がここで話していることを説明するJS Fiddle。
HTML:
<body ng-app="TestApp" ng-controller="TestCtrl">
<div ng-bind-html='y | to_trusted'></div>
<svg width="100" height="100">
<path ng-attr-d="M{{x}},10L50,50L10,50Z" />
</svg>
</body>
Javascript:
var app = angular.module("TestApp", []);
app.controller('TestCtrl', function ($scope, $interval) {
$scope.y = '<svg width="100" height="100"><path ng-attr-d="M{{x}},10L50,50L10,50Z"/></svg>';
$scope.x = 10;
});
app.filter('to_trusted', ['$sce', function ($sce) {
return function (text) {
return $sce.trustAsHtml(text);
};
}]);
2 番目の ng-attr-d<path>
は評価されますが、最初は評価されません。