不能将Select2参数传递到UI-select2



我试图使用ui-select2 Angular指令,github的repo状态:

所有的select2选项都可以通过指令传递。你可以在Select2文档页

阅读更多关于支持的选项列表和它们的作用

我有指令工作,但我无法通过简单的选项(即:它们被忽略)。例如:

<form>
   <input type='hidden' ui-select2='selectGenes' ng-model='selectedGene' , ng-required="true">
</form>

js

$scope.selectGenes = {
  minimumInputLength: 2,
 'ajax': {
   url: "/api/genes.json",
   dataType: 'json',
   data: function(term, page) {
     return { q: term }; 
   },
   results: function(data, page) {
       var index;
       for (index = 0; index < data.length; ++index){
           data[index].text = data[index].name2;
       };
     return { results: data };
   }
 }
};   

我算出来了。Select2参数需要加引号。

$scope.selectGenes = {
  'minimumInputLength': 2,
  'placeholder': 'Enter Gene',

相关内容

  • 没有找到相关文章

最新更新