我正在尝试使用用户提供的HTML填充内容。具体做法是:
app.directive("myTable", function() {
return {
restrict: 'E',
scope: {
rows: '@'
},
template:
'<table>' +
'<tbody>' +
'<tr ng-repeat="row in rows">' +
'<td>{{row.html}}</td>' +
'</tr>' +
'</tbody>' +
'</table>'
};
});
但是,{{row.html}}作为文字插入。谢谢