我从无序列表中删除了项目符号点,并且我想在每条消息上显示Log
,但这不会出现。不知道下面的代码有什么问题,因为我希望用户看到消息之间的区别,所有消息一起用户都看不到消息的起点和终点。任何其他解决方案,以使其更好?
main.html中
<div class="row">
<ul style="list-style: none">
<li ng-repeat="item in data | filter:vm.searchLog track by $index" ng-bind-html="item | highlight:vm.searchLog">Log:</li>
</ul>
</div>
答案 0 :(得分:1)