我在我的meteor应用程序中使用comerc:autoform-typeahead
包(它与aldeed:autoforms一起使用)来实现typeahead。
它的DOCS说我们可以像这样使用它
{
tags: {
type: String,
autoform: {
type: "typeahead",
afFieldInput: {
typeaheadOptions: {},
typeaheadDatasets: {}
}
}
}
}
此包有效,并显示所有匹配结果。问题是,我们如何限制输出(例如5)? 这些解决方案:
typeaheadOptions: {limit : 5}
或
typeaheadDatasets: {limit: 5}
不能工作。
第二个问题:是否有任何其他具有限制选项的autoforms的typeahead包?