我已将输入文本值存储到id name = search-query的变量中。然后我搜索JSON数据以查找任何匹配的结果,然后在屏幕上输出结果。有没有办法可以加粗匹配search-query.val的单词?我尝试过使用ng-bind-html但不输出结果。
<body ng-app="products" ng-controller="ctrl">
<input type="text" id="search-query" name="query" placeholder="Enter product name"></input>
<tbody>
<tr ng-repeat="result in searchResult|orderBy:order:reverse" >
<td >
<a ng-href="{{result.link}}" target="_blank">
//used ng-bind-html or ng-bind, but does not works
<span ng-bind-html="result.name" target="_blank"></span>
</a>
</td>
<td ng-bind="result.type"></td>
</tr>
</tbody>
var app2 = angular.module('products', []);
app2.controller('ctrl', function($scope) {
$scope.searchResult = [];
$scope.submit = function(){
var search = $("#search-query").val();
$.each(json.products, function(i, v) {
var regex = new RegExp(search, "i");
if (v.name.search(regex) != -1) {
// For the following line, is there a way which I can bold the word which match the search-query.val?
var name = v.name.replace(search, "<b>search</b>"); // doesn't work
$scope.searchResult.push({ name:name, type: v.type, link: v.url });
return;
}
});
}
答案 0 :(得分:1)
一种方法是将过滤器与ng-bind-html结合使用。我的plnkr example中的过滤器是直接从angular bootstrap typeahead指令代码中复制的,所以我不赞成这个:) 但另一部分是使用ng-model作为搜索词,而不是使用jquery查找它。 希望这会有所帮助。
<强>标记强>:
<input type="text" ng-model="search.name">
<ul>
<li ng-repeat="item in items | filter: search.name">
<span ng-bind-html="item | highlight:search.name"></span>
</li>
</ul>
<强>的JavaScript 强>:
var app = angular.module('plunker', ['ngSanitize']);
app.controller('MainCtrl', function($scope) {
$scope.search = {
name: ''
};
$scope.items = ['Jane','John','Sam','Jennifer','Martha'];
});
app.filter('highlight', function($sce, $injector, $log) {
var isSanitizePresent;
isSanitizePresent = $injector.has('$sanitize');
function escapeRegexp(queryToEscape) {
// Regex: capture the whole query string and replace it with the string that will be used to match
// the results, for example if the capture is "a" the result will be \a
return queryToEscape.replace(/([.?*+^$[\]\\(){}|-])/g, '\\$1');
}
function containsHtml(matchItem) {
return /<.*>/g.test(matchItem);
}
return function(matchItem, query) {
if (!isSanitizePresent && containsHtml(matchItem)) {
$log.warn('Unsafe use of typeahead please use ngSanitize'); // Warn the user about the danger
}
matchItem = query ? ('' + matchItem).replace(new RegExp(escapeRegexp(query), 'gi'), '<strong>$&</strong>') : matchItem; // Replaces the capture string with a the same string inside of a "strong" tag
if (!isSanitizePresent) {
matchItem = $sce.trustAsHtml(matchItem); // If $sanitize is not present we pack the string in a $sce object for the ng-bind-html directive
}
return matchItem;
};
});