对于使用 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);
};
}]);
第二个中的 ng-attr-d<path>
被评估,但第一个没有。