0

我使用以下 ng-repeat:

<b>Mots clés :</b><span ng-repeat="resulKeywords in resultats.tra_keywords"><span ng-bind-html="resulKeywords | highlight:rechercheKeywords"></span></span>

它可以工作并显示我所有的结果关键字。样品展示:

 result1result2result3result4

如何在结果之间添加空格?

 result1 result2 result3 result4

我所有的测试都失败了,因为我将结果封装在 ng-bind-html 中。

4

1 回答 1

4

尝试添加

<span ng-bind-html="resulKeywords | highlight:rechercheKeywords"></span> &nbsp;

于 2014-10-27T13:41:51.427 回答