问候我正在使用 Rails swiftype.com的 Swiftype gem 我已经让它工作了,我可以将文档上传到他们的网站,并在我的网站上自动完成。
我遇到的问题是我正在搜索两种不同的文档类型,并希望将其显示在结果中。
我有两种类型的文档:类别和公司
当前我有这个显示:
Search:
Category
Category
Company
Category
Company
我希望它是这样的
Search:
Category
Category
Category
---------
Company
Company
甚至更好的是:
Search:
Category | Company
Category | Company
Category | Company
我正在使用默认的 Swifttype 自动完成 JS。
而页面上的JS是这样的:
$(function() {
var customResultRenderFunction = function(ctx, data) {
var withSections = [],
noSections = [];
$.each(data, function(docType, results) {
$.each(results, function(idx, result) {
if (result.sections && result.sections.length > 15) {
withSections.push(result);
} else {
noSections.push(result);
}
});
});
var withSectionsList = $('<ul class="with_sections"></ul>'),
noSectionsList = $('<ul class="no_sections"></ul>');
$.each(withSections, function(idx, item) {
ctx.registerResult($('<li class="result"><p>' + item['name'] + '</p></li>').appendTo(withSectionsList), item);
});
$.each(noSections, function(idx, item) {
ctx.registerResult($('<li class="result"><p>' + item['name'] + '</p></li>').appendTo(noSectionsList), item);
});
if (withSections.length > 0) {
withSectionsList.appendTo(ctx.list);
}
if (noSections.length > 0) {
noSectionsList.appendTo(ctx.list);
}
};
$('#st-search-input').swiftype({
engineKey: '<%= ENV['SWIFTYPE_ENGINE_KEY'] %>',
resultRenderFunction: customResultRenderFunction,
suggestionListType: 'div',
resultListSelector: '.result',
fetchFields: {page: ['url', 'name']}
});
});
</script>
我怎样才能更好地显示这个,以分离文档类型?