angularjs 實現(xiàn)帶查找篩選功能的select下拉框?qū)嵗?/h1>
更新時間:2017年01月11日 15:08:15 作者:茜瓜
本篇文章主要介紹了angularjs 實現(xiàn)帶查找篩選功能的select下拉框?qū)嵗?,具有一定的參考價值,感興趣的小伙伴們可以參考一下。
一.背景
對于select的下拉列表,像國家選擇這樣的功能,全世界那么多國家,一直拉滾動條多辛苦,眼睛也要盯著找,累!so,為優(yōu)化用戶體驗,帶查找功能的下拉框是非常非常有必要的。都知道jquery里有這樣的插件,但我們用的是Angularjs,更希望用雙向綁定,指令的方式優(yōu)雅地解決這個問題。
分析:
目標
在原來的<select ng-options="">標簽上新加一個屬性 select-search 就能支持查找的功能。如果這個屬性沒起作用,也不影響原來的select的功能。
問題
1.在selectSearch指令里,怎么獲取到ng-options里的數(shù)據(jù)源,以及指定的value(option標簽的value)和text(option標簽里的text)字段名。
2.用什么方式來篩選?是每次顯示匹配項,隱藏不匹配項還是毎次從數(shù)據(jù)源里匹配,重新生成結(jié)點。
思路
1.參考angular自帶指令ng-options來獲取數(shù)據(jù)源和value,text字段名。
特別說明,僅支持ng-options="obj.value as obj.text for obj in list"的普通形式,那些帶分組的等等,暫不支持哈。
2.重新生成結(jié)點。(為什么這么選擇,方便呀?。?/p>
二.具體實現(xiàn)
1.代碼部分
1.1 js代碼(請引先引入jquery,不然會報錯)
/**
* 帶篩選功能的下拉框
* 使用方法 <select ngc-select-search name="select1" ng-options="">
* 說明[ select 一定要有name,ng-options 屬性]
*/
.directive('ngcSelectSearch', function($animate, $compile, $parse) {
function parseOptions(optionsExp, element, scope) {
// ngOptions里的正則
var NG_OPTIONS_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?(?:\s+disable\s+when\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/;
var match = optionsExp.match(NG_OPTIONS_REGEXP);
if (!(match)) {
console.log('ng-options 表達式有誤')
}
var valueName = match[5] || match[7];
var keyName = match[6];
var displayFn = $parse(match[2]);
var keyFn = $parse(match[1]);
var valuesFn = $parse(match[8]);
var labelArray = [],
idArray = [],
optionValues = [];
scope.$watch(match[8], function(newValue, oldValue) {
if (newValue && newValue.length > 0) {
optionValues = valuesFn(scope) || [];
labelArray = [];
idArray = []
for (var index = 0, l = optionValues.length; index < l; index++) {
var it = optionValues[index];
if (match[2] && match[1]) {
var localIt = {};
localIt[valueName] = it;
var label = displayFn(scope, localIt);
var dataId = keyFn(scope, localIt);
labelArray.push(label);
idArray.push(dataId);
}
}
scope.options = {
'optionValues': optionValues,
'labelArray': labelArray,
'idArray': idArray
}
}
});
}
return {
restrict: 'A',
require: ['ngModel'],
priority: 100,
replace: false,
scope: true,
template: '<div class="chose-container">' +
'<div class="chose-single"><span class="j-view"></span><i class="glyphicon glyphicon-remove"></i></div>' +
'<div class="chose-drop chose-hide j-drop">' +
'<div class="chose-search">' +
'<input class="j-key" type="text" autocomplete="off">' +
'</div>' +
'<ul class="chose-result">' +
// '<li ng-repeat="'+repeatTempl+'" data-id="'+keyTempl+'" >{{'+ valueTempl+'}}</li>'+
'</ul>' +
'</div>' +
'</div>',
link: {
pre: function selectSearchPreLink(scope, element, attr, ctrls) {
var tmplNode = $(this.template).first();
var modelName = attr.ngModel,
name = attr.name? attr.name:('def'+Date.now());
tmplNode.attr('id', name + '_chosecontianer');
$animate.enter(tmplNode, element.parent(), element);
},
post: function selectSearchPostLink(scope, element, attr, ctrls) {
var choseNode = element.next(); //$('#'+attr.name +'_chosecontianer');
choseNode.addClass(attr.class);
element.addClass('chose-hide');
// 當前選中項
var ngModelCtrl = ctrls[0];
if (!ngModelCtrl || !attr.name) return;
parseOptions(attr.ngOptions, element, scope);
var rs = {};
function setView() {
var currentKey = ngModelCtrl.$modelValue;
if (isNaN(currentKey) || !currentKey) {
currentKey = '';
choseNode.find('.j-view:first').text('請選擇');
choseNode.find('i').addClass('chose-hide');
}
if ((currentKey + '').length > 0) {
for (var i = 0, l = rs.idArray.length; i < l; i++) {
if (rs.idArray[i] == currentKey) {
choseNode.find('.j-view:first').text(rs.labelArray[i]);
choseNode.find('i').removeClass('chose-hide');
break;
}
}
}
}
function setViewAndData() {
if (!scope.options) {
return;
}
rs = scope.options;
setView();
}
scope.$watchCollection('options', setViewAndData);
scope.$watch(attr.ngModel, setView);
function getListNodes(value) {
var nodes = [];
value = $.trim(value);
for (var i = 0, l = rs.labelArray.length; i < l; i++) {
if (rs.labelArray[i].indexOf(value) > -1) {
nodes.push($('<li>').data('id', rs.idArray[i]).text(rs.labelArray[i]))
}
}
return nodes;
}
choseNode.on('keyup', '.j-key', function() {
// 搜索輸入框keyup,重新篩選列表
var value = $(this).val();
choseNode.find('ul:first').empty().append(getListNodes(value));
return false;
}).on('click', function() {
choseNode.find('.j-drop').removeClass('chose-hide');
if (choseNode.find('.j-view:first').text() != '請選擇') {
choseNode.find('i').removeClass('chose-hide');
}
choseNode.find('ul:first').empty().append(getListNodes(choseNode.find('.j-key').val()));
return false;
}).on('click', 'ul>li', function() {
var _this = $(this);
ngModelCtrl.$setViewValue(_this.data('id'));
ngModelCtrl.$render();
choseNode.find('.j-drop').addClass('chose-hide');
return false;
}).on('click', 'i', function() {
ngModelCtrl.$setViewValue('');
ngModelCtrl.$render();
choseNode.find('.j-view:first').text('請選擇');
return false;
});
$(document).on("click", function() {
$('.j-drop').addClass('chose-hide');
choseNode.find('i').addClass('chose-hide');
return false;
});
}
}
};
})
1.2 css代碼(用less寫的,以下是編譯后的)
.chose-hide {
position: absolute!important;
top: -999em !important;
}
.chose-container {
border: none!important;
float: left;
margin-right: 40px;
padding: 0!important;
position: relative;
}
.chose-container .chose-single {
padding: 6px 12px;
color: #333;
width: 100%;
border: 1px solid #eee;
display: inline-block;
height: 30px;
}
.chose-container .chose-single::after {
content: '';
position: absolute;
border-width: 6px 3px;
border-style: solid;
/* border-top-color: transparent; */
border-left-color: transparent;
border-right-color: transparent;
border-bottom-color: transparent;
right: 8px;
top: 12px;
}
.chose-container .chose-single i {
width: 12px;
float: right;
right: 8px;
font-size: 12px;
height: 12px;
background-color: #eee;
}
.chose-container .chose-drop {
width: 195px;
position: absolute;
border: 1px solid #eee;
z-index: 1000;
background-color: #fff;
}
.chose-container .chose-search input[type='text'] {
margin: 0;
padding-left: 12px;
width: 100%;
height: 30px;
border: 1px solid #ccc;
float: none;
}
.chose-container .chose-result {
max-height: 370px;
overflow-y: scroll;
overflow-x: hidden;
}
.chose-container .chose-result li {
padding: 5px 12px;
list-style-type: none;
}
.chose-container .chose-result li:hover {
background-color: #e1e2e7;
}
1.3 使用及效果
<select ngc-select-search class="common-select" ng-model="aa.b" ng-options="obj.countryId as obj.countryCnName for obj in vm.countries" name="country">
<option value="">請選擇</option>
</select>

2.詳細說明
程序中的關(guān)鍵點是parseOptions函數(shù),即前面分析里的問題1。parseOptions是參考ng-options的源碼實現(xiàn)的,原來是想返回一個對象,這個對象里包含了數(shù)據(jù)源,但是在調(diào)試時,發(fā)現(xiàn)post函數(shù)中該函數(shù)返回對象里的數(shù)據(jù)為空,watch不到,所以改為用scope.options來存數(shù)據(jù)。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
-
AngularJS中取消對HTML片段轉(zhuǎn)義的方法例子
這篇文章主要介紹了AngularJS中取消對HTML片段轉(zhuǎn)義的方法例子,在一些需要顯示HTML的地方,就要取消AngularJS的轉(zhuǎn)義,本文就介紹了這種方法,需要的朋友可以參考下 2015-01-01
-
AngularJS 與Bootstrap實現(xiàn)表格分頁實例代碼
這篇文章主要介紹了AngularJS 與Bootstrap實現(xiàn)表格分頁的相關(guān)資料,并附實例代碼和實現(xiàn)效果圖,需要的朋友可以參考下 2016-10-10
-
舉例簡介AngularJS的內(nèi)部語言環(huán)境
這篇文章主要介紹了AngularJS的內(nèi)部語言環(huán)境,展示不同語言環(huán)境下對貨幣或是日期等文本方面所產(chǎn)生的影響,需要的朋友可以參考下 2015-06-06
-
Angular 中使用 FineReport不顯示報表直接打印預(yù)覽
這篇文章主要介紹了Angular 中使用 FineReport不顯示報表直接打印預(yù)覽,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下 2019-08-08
最新評論
一.背景
對于select的下拉列表,像國家選擇這樣的功能,全世界那么多國家,一直拉滾動條多辛苦,眼睛也要盯著找,累!so,為優(yōu)化用戶體驗,帶查找功能的下拉框是非常非常有必要的。都知道jquery里有這樣的插件,但我們用的是Angularjs,更希望用雙向綁定,指令的方式優(yōu)雅地解決這個問題。
分析:
目標 | 在原來的<select ng-options="">標簽上新加一個屬性 select-search 就能支持查找的功能。如果這個屬性沒起作用,也不影響原來的select的功能。 |
問題 |
1.在selectSearch指令里,怎么獲取到ng-options里的數(shù)據(jù)源,以及指定的value(option標簽的value)和text(option標簽里的text)字段名。 2.用什么方式來篩選?是每次顯示匹配項,隱藏不匹配項還是毎次從數(shù)據(jù)源里匹配,重新生成結(jié)點。 |
思路 |
1.參考angular自帶指令ng-options來獲取數(shù)據(jù)源和value,text字段名。 特別說明,僅支持ng-options="obj.value as obj.text for obj in list"的普通形式,那些帶分組的等等,暫不支持哈。 2.重新生成結(jié)點。(為什么這么選擇,方便呀?。?/p> |
二.具體實現(xiàn)
1.代碼部分
1.1 js代碼(請引先引入jquery,不然會報錯)
/** * 帶篩選功能的下拉框 * 使用方法 <select ngc-select-search name="select1" ng-options=""> * 說明[ select 一定要有name,ng-options 屬性] */ .directive('ngcSelectSearch', function($animate, $compile, $parse) { function parseOptions(optionsExp, element, scope) { // ngOptions里的正則 var NG_OPTIONS_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?(?:\s+disable\s+when\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/; var match = optionsExp.match(NG_OPTIONS_REGEXP); if (!(match)) { console.log('ng-options 表達式有誤') } var valueName = match[5] || match[7]; var keyName = match[6]; var displayFn = $parse(match[2]); var keyFn = $parse(match[1]); var valuesFn = $parse(match[8]); var labelArray = [], idArray = [], optionValues = []; scope.$watch(match[8], function(newValue, oldValue) { if (newValue && newValue.length > 0) { optionValues = valuesFn(scope) || []; labelArray = []; idArray = [] for (var index = 0, l = optionValues.length; index < l; index++) { var it = optionValues[index]; if (match[2] && match[1]) { var localIt = {}; localIt[valueName] = it; var label = displayFn(scope, localIt); var dataId = keyFn(scope, localIt); labelArray.push(label); idArray.push(dataId); } } scope.options = { 'optionValues': optionValues, 'labelArray': labelArray, 'idArray': idArray } } }); } return { restrict: 'A', require: ['ngModel'], priority: 100, replace: false, scope: true, template: '<div class="chose-container">' + '<div class="chose-single"><span class="j-view"></span><i class="glyphicon glyphicon-remove"></i></div>' + '<div class="chose-drop chose-hide j-drop">' + '<div class="chose-search">' + '<input class="j-key" type="text" autocomplete="off">' + '</div>' + '<ul class="chose-result">' + // '<li ng-repeat="'+repeatTempl+'" data-id="'+keyTempl+'" >{{'+ valueTempl+'}}</li>'+ '</ul>' + '</div>' + '</div>', link: { pre: function selectSearchPreLink(scope, element, attr, ctrls) { var tmplNode = $(this.template).first(); var modelName = attr.ngModel, name = attr.name? attr.name:('def'+Date.now()); tmplNode.attr('id', name + '_chosecontianer'); $animate.enter(tmplNode, element.parent(), element); }, post: function selectSearchPostLink(scope, element, attr, ctrls) { var choseNode = element.next(); //$('#'+attr.name +'_chosecontianer'); choseNode.addClass(attr.class); element.addClass('chose-hide'); // 當前選中項 var ngModelCtrl = ctrls[0]; if (!ngModelCtrl || !attr.name) return; parseOptions(attr.ngOptions, element, scope); var rs = {}; function setView() { var currentKey = ngModelCtrl.$modelValue; if (isNaN(currentKey) || !currentKey) { currentKey = ''; choseNode.find('.j-view:first').text('請選擇'); choseNode.find('i').addClass('chose-hide'); } if ((currentKey + '').length > 0) { for (var i = 0, l = rs.idArray.length; i < l; i++) { if (rs.idArray[i] == currentKey) { choseNode.find('.j-view:first').text(rs.labelArray[i]); choseNode.find('i').removeClass('chose-hide'); break; } } } } function setViewAndData() { if (!scope.options) { return; } rs = scope.options; setView(); } scope.$watchCollection('options', setViewAndData); scope.$watch(attr.ngModel, setView); function getListNodes(value) { var nodes = []; value = $.trim(value); for (var i = 0, l = rs.labelArray.length; i < l; i++) { if (rs.labelArray[i].indexOf(value) > -1) { nodes.push($('<li>').data('id', rs.idArray[i]).text(rs.labelArray[i])) } } return nodes; } choseNode.on('keyup', '.j-key', function() { // 搜索輸入框keyup,重新篩選列表 var value = $(this).val(); choseNode.find('ul:first').empty().append(getListNodes(value)); return false; }).on('click', function() { choseNode.find('.j-drop').removeClass('chose-hide'); if (choseNode.find('.j-view:first').text() != '請選擇') { choseNode.find('i').removeClass('chose-hide'); } choseNode.find('ul:first').empty().append(getListNodes(choseNode.find('.j-key').val())); return false; }).on('click', 'ul>li', function() { var _this = $(this); ngModelCtrl.$setViewValue(_this.data('id')); ngModelCtrl.$render(); choseNode.find('.j-drop').addClass('chose-hide'); return false; }).on('click', 'i', function() { ngModelCtrl.$setViewValue(''); ngModelCtrl.$render(); choseNode.find('.j-view:first').text('請選擇'); return false; }); $(document).on("click", function() { $('.j-drop').addClass('chose-hide'); choseNode.find('i').addClass('chose-hide'); return false; }); } } }; })
1.2 css代碼(用less寫的,以下是編譯后的)
.chose-hide { position: absolute!important; top: -999em !important; } .chose-container { border: none!important; float: left; margin-right: 40px; padding: 0!important; position: relative; } .chose-container .chose-single { padding: 6px 12px; color: #333; width: 100%; border: 1px solid #eee; display: inline-block; height: 30px; } .chose-container .chose-single::after { content: ''; position: absolute; border-width: 6px 3px; border-style: solid; /* border-top-color: transparent; */ border-left-color: transparent; border-right-color: transparent; border-bottom-color: transparent; right: 8px; top: 12px; } .chose-container .chose-single i { width: 12px; float: right; right: 8px; font-size: 12px; height: 12px; background-color: #eee; } .chose-container .chose-drop { width: 195px; position: absolute; border: 1px solid #eee; z-index: 1000; background-color: #fff; } .chose-container .chose-search input[type='text'] { margin: 0; padding-left: 12px; width: 100%; height: 30px; border: 1px solid #ccc; float: none; } .chose-container .chose-result { max-height: 370px; overflow-y: scroll; overflow-x: hidden; } .chose-container .chose-result li { padding: 5px 12px; list-style-type: none; } .chose-container .chose-result li:hover { background-color: #e1e2e7; }
1.3 使用及效果
<select ngc-select-search class="common-select" ng-model="aa.b" ng-options="obj.countryId as obj.countryCnName for obj in vm.countries" name="country"> <option value="">請選擇</option> </select>
2.詳細說明
程序中的關(guān)鍵點是parseOptions函數(shù),即前面分析里的問題1。parseOptions是參考ng-options的源碼實現(xiàn)的,原來是想返回一個對象,這個對象里包含了數(shù)據(jù)源,但是在調(diào)試時,發(fā)現(xiàn)post函數(shù)中該函數(shù)返回對象里的數(shù)據(jù)為空,watch不到,所以改為用scope.options來存數(shù)據(jù)。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
AngularJS中取消對HTML片段轉(zhuǎn)義的方法例子
這篇文章主要介紹了AngularJS中取消對HTML片段轉(zhuǎn)義的方法例子,在一些需要顯示HTML的地方,就要取消AngularJS的轉(zhuǎn)義,本文就介紹了這種方法,需要的朋友可以參考下2015-01-01AngularJS 與Bootstrap實現(xiàn)表格分頁實例代碼
這篇文章主要介紹了AngularJS 與Bootstrap實現(xiàn)表格分頁的相關(guān)資料,并附實例代碼和實現(xiàn)效果圖,需要的朋友可以參考下2016-10-10舉例簡介AngularJS的內(nèi)部語言環(huán)境
這篇文章主要介紹了AngularJS的內(nèi)部語言環(huán)境,展示不同語言環(huán)境下對貨幣或是日期等文本方面所產(chǎn)生的影響,需要的朋友可以參考下2015-06-06Angular 中使用 FineReport不顯示報表直接打印預(yù)覽
這篇文章主要介紹了Angular 中使用 FineReport不顯示報表直接打印預(yù)覽,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下2019-08-08