我想實現一個VisualSearch.js查詢框,可以用來搜索特定對象的屬性。 VisualSearch.js提供了Facets,它們可以有類別,但是沒有人知道我可以爲模型名稱.eg'user'加載構面的方式,然後在點擊/選擇之後加載第二個具有屬性列表的子構面讓用戶有機會最終點擊將通過JSON調用加載的值。我已經搜索並找不到任何對此類功能的引用,但我可能只是使用了不正確的術語「Sub Facet」。VisualSearch.js Sub Facets
這是我一直在玩的JSFiddle。 http://jsfiddle.net/Savvy84/HRuAP/13/
var visualSearch = VS.init({
container: $('#visual_search'),
query: '',
callbacks: {
search: function(query, searchCollection) {},
facetMatches: function(callback) {
callback([
{
value: 'user.email',
label: 'users.email',
category: 'Users'},
{
value: 'job.name',
label: 'job.name',
category: 'Jobs'},
{
value: 'job.startDate',
label: 'job.startDate',
category: 'Jobs'}
]);
},
valueMatches: function(facet, searchTerm, callback) {
if (searchTerm.length > 0) {
//pass the facet to the search and let the server deal with it.
switch (facet) {
case 'user.email':
callback([
{
label: '[email protected]'},
{
label: '[email protected]'}
]);
break;
}
}
}
} });
很多謝謝。