<tr ng-repeat="item in data">
{{item.name}}
</tr>
How to dynamically add the above string to make it effective and achieve dynamic binding.
The approximate code is as follows
var str = '<tr ng-repeat="item in data">' +
'{{item.name}}' +
'</tr>';
angular.element('tbody').html(str)
天蓬老师2017-05-15 16:58:15
http://stackoverflow.com/questions/18157305/angularjs-compiling-dynamic-html-strings-from-database
我想大声告诉你2017-05-15 16:58:15
What needs to be done by operating dom to load angular tags
Please use ng-if or ng-show to control it.
If you want to operate DOM, please use directive reference: angular coding standards