angularjs实现搜索的关键字在正文中高亮出来
作者:灰太大 时间:2024-07-30 03:58:09
1、定义高亮 filter
我们希望搜索的关键字在正文中高亮出来,正文内容就是过滤器的第一个参数,第二个参数就是搜索关键字,这样,我们的过滤器将会有两个参数了。
高亮的原理很简单,将需要高亮的内容使用 span 标记隔离出来,再加上一个高亮的 class样式 进行描述就可以了。
app.filter("highlight", function($sce, $log){
var fn = function(text, search){
$log.info("text: " + text);
$log.info("search: " + search);
if (!search) {
return $sce.trustAsHtml(text);
}
text = encodeURIComponent(text);
search = encodeURIComponent(search);
var regex = new RegExp(search, 'gi')
var result = text.replace(regex, '<span class="highlightedTextStyle">$&</span>');
result = decodeURIComponent(result);
$log.info("result: " + result );
return $sce.trustAsHtml(result);
};
return fn;
});
$sce, 和 $log 是 angular 提供的两个服务,其中 $sce 服务需要使用 ngSanitize 模块。关于这个模块,可以参考:angular-ngSanitize模块-$sanitize服务详解
2、定义html视图
<div ng-controller="search">
<div>
<input type="text" ng-model="notify.search" value=""/>
</div>
<!--text内容会高亮显示搜索关键字-->
<div ng-bind-html="text | highlight:notify.search">
</div>
</div>
3、控制器
app.controller("search", function($scope){
$scope.text = "hello, world. hello, world. hello, world. this is filter example.";
$scope.notify.search = "";
})
注意在控制器中引入过滤器highlight
当搜索的关键字为数字时,如"1",报如下错误:(输入汉字时没有问题)
一些解决办法:
1.直接try catch处理,这样太简单了,并且会导致新的问题出现
2.把escape全部改成encodeURIComponent编码,试了一下不能解决问题
来源:http://www.jianshu.com/p/7a877b879c5a
标签:angularjs,高亮,显示
0
投稿
猜你喜欢
Python 获得13位unix时间戳的方法
2022-12-08 18:26:25
Python爬虫之用Xpath获取关键标签实现自动评论盖楼抽奖(二)
2021-02-11 00:58:03
教你如何使Python爬取酷我在线音乐
2021-02-18 14:13:01
python连接sql server数据库的方法实战
2024-01-22 03:28:38
Python编程中的文件操作攻略
2022-12-08 10:49:54
Python定时任务APScheduler的实例实例详解
2023-03-18 01:33:05
pandas 按照特定顺序输出的实现代码
2023-02-04 19:35:17
python不同版本的_new_不同点总结
2023-09-21 15:36:45
Python机器学习NLP自然语言处理基本操作关键词
2023-11-09 05:51:31
mysql 实现互换表中两列数据方法简单实例
2024-01-24 07:11:04
python 使用OpenCV进行简单的人像分割与合成
2021-06-16 20:46:39
Golang两行代码实现发送钉钉机器人消息
2024-04-26 17:30:39
python人工智能tensorflow函数tf.layers.dense使用方法
2022-03-09 21:52:34
python使用jieba实现中文分词去停用词方法示例
2021-02-04 11:27:17
PHP仿微信多图片预览上传实例代码
2024-05-03 15:27:45
MySQL关于sql_mode解析与设置讲解
2024-01-25 00:40:59
python+pytest接口自动化之日志管理模块loguru简介
2021-10-25 14:41:34
网马解密大讲堂——网马解密中级篇(Document.write篇)
2009-09-16 16:16:00
详解python的集合set的函数
2023-02-06 04:16:42
[译]图片优化 第五章:AlphaImageLoader
2010-08-29 18:39:00