我试图在我的网站上使用角度素材的自动完成组件。
在我的html代码中:
<md-autocomplete md-selected-item="selectedItem" md-search-text="searchText" md-items="item in getMatches(searchText)" md-item-text="item.display">
<md-item-template>
<span md-highlight-text="searchText">{{item.display}}</span>
</md-item-template>
<md-not-found>
No matches found.
</md-not-found>
</md-autocomplete>
在我的控制器中我有以下内容:
app.controller('IndexController', function ($scope) {
$scope.getMatches = function (text) {
alert(text);
}
});
如你所见,我没有实施太多。但如果自动完成功能试图找到某些东西,它应该执行getMatches并提醒文本。
在我的情景中,除了打印之外没有做任何事情&#34;没有找到匹配。&#34;
没有文字输入来输入要搜索的文字。
我错过了什么?jsfiddle https://jsfiddle.net/p7wc8psy/
答案 0 :(得分:3)
你制作的DOM是正确的。
<md-autocomplete md-selected-item="selectedItem" md-search-text="searchText" md-items="item in getMatches(searchText)" md-item-text="item.display">
<md-item-template>
<span md-highlight-text="searchText">{{item.display}}</span>
</md-item-template>
<md-not-found>
No matches found.
</md-not-found>
</md-autocomplete>
但是下面显示的功能是错误的,因为它没有返回任何因为“找不到匹配项”的原因。
app.controller('IndexController', function ($scope) {
$scope.getMatches = function (text) {
alert(text);//this does not return anything
}
});
现在下一个问题应该归还什么。
它应该返回如下的JSON数组。
[{
value: "apple",
display: "apple"
}, {
value: "banana",
display: "banana"
}, {
value: "gauva",
display: "gauva"
}, {
value: "melon",
display: "melon"
}, {
value: "potato",
display: "potato"
}, {
value: "carrot",
display: "carrot"
}, {
value: "cauliflower",
display: "cauliflower"
}, {
value: "jasmine",
display: "jasmine"
}, {
value: "cabbage",
display: "cabbage"
}, {
value: "peas",
display: "peas"
}]
JSON中的display key
是什么
由于您在此处提到md-item-text="item.display"
,因此返回的数组必须具有显示在自动完成下拉列表中的显示键。
所以我的搜索功能如下:
$scope.myDta = [{
value: "apple",
display: "apple"
}, {
value: "banana",
display: "banana"
}, {
value: "gauva",
display: "gauva"
}, {
value: "melon",
display: "melon"
}, {
value: "potato",
display: "potato"
}, {
value: "carrot",
display: "carrot"
}, {
value: "cauliflower",
display: "cauliflower"
}, {
value: "jasmine",
display: "jasmine"
}, {
value: "cabbage",
display: "cabbage"
}, {
value: "peas",
display: "peas"
}];
$scope.getMatches = function (text) {
text = text.toLowerCase();
var ret = $scope.myDta.filter(function (d) {
//return element which starts with entered text
return d.display.startsWith(text);
});
return ret;
}
工作代码here
测试用例:输入 ca
希望这有帮助!
答案 1 :(得分:0)
我不能让你的小提琴奏效。我已经努力到达https://jsfiddle.net/p7wc8psy/7/,但我认为你需要最新的角度来运行材料,并且很难在jsFiddle中加载。您可能希望切换到codepen或其他内容。
与此同时,我认为你缺少的是:
<md-autocomplete
name="search-drink-autocomplete-input"
md-selected-item="selectedItem"
md-search-text="searchText"
md-items="item in getMatches(searchText)"
md-item-text="item.display"
md-search-text-change="getMatches(searchtext)"> // *********