Javascript 突出显示搜索文本 - angular 2
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/44961759/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Highlight the search text - angular 2
提问by regina
A messenger displays the search results based on the input given by the user. Need to highlight the word that is been searched, while displaying the result. These are the html and component that is been used.
信使根据用户提供的输入显示搜索结果。需要突出显示搜索到的单词,同时显示结果。这些是使用的 html 和组件。
Component.html
组件.html
<div *ngFor = "let result of resultArray">
<div>Id : result.id </div>
<div>Summary : result.summary </div>
<div> Link : result.link </div>
</div>
Component.ts
组件.ts
resultArray : any = [{"id":"1","summary":"These are the results for the searched text","link":"http://www.example.com"}]
This resultArray is fetched from hitting the backend service by sending the search text as input. Based on the search text, the result is fetched. Need to highlight the searched text, similar to google search. Please find the screenshot,
这个 resultArray 是通过发送搜索文本作为输入来访问后端服务的。根据搜索文本,获取结果。需要高亮搜索到的文字,类似google搜索。请找到截图,
If I search for the word "member", the occurence of the word "member" gets highlighted. How to achieve the same using angular 2. Please suggest an idea on this.
如果我搜索“成员”这个词,“成员”这个词的出现就会突出显示。如何使用 angular 2 实现相同的效果。请对此提出建议。
回答by Fahad Nisar
You can do that by creating a pipe and applying that pipe to the summarypart of array inside ngfor. Here is the code for Pipe:
您可以通过创建一个管道并将该管道应用到数组中的摘要部分来实现ngfor。这是代码Pipe:
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'highlight'
})
export class HighlightSearch implements PipeTransform {
transform(value: any, args: any): any {
if (!args) {return value;}
var re = new RegExp(args, 'gi'); //'gi' for case insensitive and can use 'g' if you want the search to be case sensitive.
return value.replace(re, "<mark>$&</mark>");
}
}
and then in markup apply it on a string like this:
然后在标记中将其应用于这样的字符串:
<div innerHTML="{{ str | highlight : 'search'}}"></div>
Replace 'search' with the word you want to highlight.
将“搜索”替换为您要突出显示的单词。
Hope this will help.
希望这会有所帮助。
回答by Kamal Saad
The selected answer has the following issues:
所选答案存在以下问题:
- It will return undefined if there is nothing provided in the search string
- The search should be case insensitive but that should not replace the original string case.
- 如果搜索字符串中没有提供任何内容,它将返回 undefined
- 搜索应该不区分大小写,但不应替换原始字符串大小写。
i would suggest the following code instead
我建议改为使用以下代码
transform(value: string, args: string): any {
if (args && value) {
let startIndex = value.toLowerCase().indexOf(args.toLowerCase());
if (startIndex != -1) {
let endLength = args.length;
let matchingString = value.substr(startIndex, endLength);
return value.replace(matchingString, "<mark>" + matchingString + "</mark>");
}
}
return value;
}
回答by Will Shaver
One difficulty the innerHTML method has is in styling the <mark>tag. Another method is to place this in a component, allowing for much more options in styling.
innerHTML 方法的难点之一是<mark>标记样式。另一种方法是将其放置在组件中,从而在样式中提供更多选项。
highlighted-text.component.html
突出显示的text.component.html
<mark *ngIf="matched">{{matched}}</mark>{{unmatched}}
highlighted-text.component.ts
突出显示的text.component.ts
import { Component, Input, OnChanges, OnInit } from "@angular/core";
@Component({
selector: "highlighted-text",
templateUrl: "./highlighted-text.component.html",
styleUrls: ["./highlighted-text.component.css"]
})
export class HighlightedTextComponent implements OnChanges {
@Input() needle: String;
@Input() haystack: String;
public matched;
public unmatched;
ngOnChanges(changes) {
this.match();
}
match() {
this.matched = undefined;
this.unmatched = this.haystack;
if (this.needle && this.haystack) {
const needle = String(this.needle);
const haystack = String(this.haystack);
const startIndex = haystack.toLowerCase().indexOf(needle.toLowerCase());
if (startIndex !== -1) {
const endLength = needle.length;
this.matched = haystack.substr(startIndex, endLength);
this.unmatched = haystack.substr(needle.length);
}
}
}
}
highlighted-text.component.css
突出显示的text.component.css
mark {
display: inline;
margin: 0;
padding: 0;
font-weight: 600;
}
Usage
用法
<highlighted-text [needle]=searchInput [haystack]=value></highlighted-text>
回答by Rahul Dudhane
If you have multiple words in your string than use pipe which accepts array and highlight each word in result.
如果您的字符串中有多个单词,请使用接受数组并突出显示结果中的每个单词的管道。
You can use following pipe for multiple search words:-
您可以将以下管道用于多个搜索词:-
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'highlight'
})
export class HighlightText implements PipeTransform {
transform(value: any, args: any): any {
if (!args) {return value;}
for(const text of args) {
var reText = new RegExp(text, 'gi');
value = value.replace(reText, "<mark>" + text + "</mark>");
//for your custom css
// value = value.replace(reText, "<span class='highlight-search-text'>" + text + "</span>");
}
return value;
}
}
Split you string to generate array of strings.
拆分您的字符串以生成字符串数组。
var searchTerms = searchKey.split(' ');
usage:
用法:
<div [innetHTML]="result | highlight:searchTerms"></div>
If you wanted to use custom class :
如果您想使用自定义类:
.highlight-search-text {
color: black;
font-weight: 600;
}
All the best!
祝一切顺利!
回答by Tobias Gassmann
Building on a previous answer (HighlightedText-Component) I ended up with this:
基于以前的答案(HighlightedText-Component),我最终得到了这个:
import { Component, Input, OnChanges } from "@angular/core";
@Component({
selector: 'highlighted-text',
template: `
<ng-container *ngFor="let match of result">
<mark *ngIf="(match === needle); else nomatch">{{match}}</mark>
<ng-template #nomatch>{{match}}</ng-template>
</ng-container>
`,
})
export class HighlightedTextComponent implements OnChanges {
@Input() needle: string;
@Input() haystack: string;
public result: string[];
ngOnChanges() {
const regEx = new RegExp('(' + this.needle + ')', 'i');
this.result = this.haystack.split(regEx);
}
}
This way also multiple matches of the needle are highlighted. The usage of this component is similar to the one in the previous answer:
这样,针的多个匹配也会突出显示。这个组件的用法和上一个回答类似:
<highlighted-text [needle]="searchInput" [haystack]="value"></highlighted-text>
For me this approach using a component feels more secure, since I do not have to use "innerHtml".
对我来说,这种使用组件的方法感觉更安全,因为我不必使用“innerHtml”。
回答by Thomas Lindackers
I would suggest to escape the search String like this
我建议像这样转义搜索字符串
RegExp.escape = function(string) {
if(string !== null){ return string.toString().replace(/[.*+?^${}()|[\]\]/g, '\$&')
} else return null
};
@Pipe({
name: 'highlight'
})
export class HighlightPipe implements PipeTransform {
constructor(private sanitizer: DomSanitizer){ }
transform(value: any, args: any): any {
if (!args || value == null) {
return value;
}
// Match in a case insensitive maneer
const re = new RegExp(RegExp.escape(args), 'gi');
const match = value.match(re);
// If there's no match, just return the original value.
if (!match) {
return value;
}
const replacedValue = value.replace(re, "<mark>" + match[0] + "</mark>")
return this.sanitizer.bypassSecurityTrustHtml(replacedValue)
}
}
回答by Mingster
To expand on Kamal's answer,
为了扩展 Kamal 的答案,
The value coming into the transform method, could be a number, perhaps a cast to string String(value)would be safe thing to do.
进入转换方法的值可能是一个数字,也许转换为字符串String(value)是安全的做法。
transform(value: string, args: string): any {
if (args && value) {
value = String(value); // make sure its a string
let startIndex = value.toLowerCase().indexOf(args.toLowerCase());
if (startIndex != -1) {
let endLength = args.length;
let matchingString = value.substr(startIndex, endLength);
return value.replace(matchingString, "<mark>" + matchingString + "</mark>");
}
}
return value;
}


