gpt4 book ai didi

javascript - 如何在 angularjs 中发布进程绑定(bind)数据

转载 作者:行者123 更新时间:2023-12-03 04:08:20 25 4
gpt4 key购买 nike

是否可以发布与 angularjs 绑定(bind)的处理数据?

我正在编写简单的搜索页面,并且我已经使用代码生成了结果:

...
<div class="row" ng-repeat="document in sc.searchResult.content">
<blockquote>
{{document.content}}
</blockquote>
</div>
...

问题是我需要在每个结果中将特定单词加粗(查询框中的单词 - 就像下面的谷歌一样)

enter image description here

如何达到这样的效果?

最佳答案

Controller .js

$scope.document.content = someSearchContent.replace(/<searchTerm>/g, '<strong>' + <searchTerm> + '</strong>')

searchTerm 是您需要修改的字符串。您可以使用 RegExp() 创建正则表达式。

模板

<blockquote ng-bind-html="document.content"></blockquote>

关于javascript - 如何在 angularjs 中发布进程绑定(bind)数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44445670/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com