私はこのコードを持っています
var app = angular.module('myApp', ["ngSanitize"]);
app.controller('myController', function($scope) {
$scope.html = ['<div class="text-color">Your html code</div>',
'<div class="text-color">2nd div</div>',
'<div class="text-color">3rd div </div>',
'<svg width="100" height="100"><rect width="50px" height="50px" x="30" y="30"/></svg>'
];
});
<div ng-app="myApp">
<div ng-controller="myController">
<span ng-repeat="div in html">
<p ng-bind-html="div"></p>
</span>
</div>
</div>
svg
問題は、コントローラーに保存されたタグが表示されないことです