Autoform-typeahead输出限制

时间:2016-07-18 13:22:04

标签: javascript meteor meteor-autoform twitter-typeahead simple-schema

我在我的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包?

1 个答案:

答案 0 :(得分:0)

您可以将限制放在服务器端搜索方法中。我的问题here将为您提供有用的参考。