初始化ng模型时,Angular ui选择占位符不起作用



每次点击按钮时,我都试图添加一个新的选择,

html:

 <div ng-repeat = "select in selects track by $index">
  <ui-select ng-model="selects[$index]" theme="select2" ng-disabled="disabled" style="min-width: 300px;">
    <ui-select-match placeholder="Select a person in the list or search his name/age...">{{$select.selected.name}}</ui-select-match>
    <ui-select-choices repeat="person in people">
      <div ng-bind-html="person.name | highlight: $select.search"></div>
    </ui-select-choices>
  </ui-select>
 </div>
 <button ng-click="addNewSelect()"> Add new select</button>

控制器:

  $scope.selects = [{}];
  $scope.addNewSelect = function() {
    $scope.selects.push({});
  }

对象数组保存在数组"selects"中,但占位符不在selects中,因为我最初使用空对象初始化ng模型。在这种情况下,如何使占位符工作?

这是同样的Plunker。

selects[$index]之后缺少.selected

如果没有这一点,ui select就会认为您已经选择了一个空对象(selects[$index]),并且不会显示占位符。

<ui-select ng-model="selects[$index].selected" theme="select2" ng-disabled="disabled" style="min-width: 300px;">

http://plnkr.co/edit/56SHyE01BJ4EXglLlIcb?p=preview

此外,您不需要使用索引进行查找,只需使用select.selected 即可

<ui-select ng-model="select.selected" theme="select2" ng-disabled="disabled" style="min-width: 300px;">

http://plnkr.co/edit/3Uq8lDtDOaj5mIZVrCfv?p=preview

添加css显示的最快方法是:块占位符项。

.select2-chosen{
   display: block !important;
}

在某些情况下,上述解决方案效果很好,但效果不佳。

<ui-select ng-model="selectedChannel"
           on-select="$ctrl.channelSelected(selectedChannel)">
    <ui-select-match placeholder="Select Channel Type">
        {{selectedChannel.text}}
    </ui-select-match>
    <ui-select-choices ui-select-header-group-selectable="$ctrl.selectGroupHeader"
                       group-by="groupFindChannel"
                       repeat="channel in (r.channels | filter: $select.search) track by channel.id">
        <div ng-bind-html="channel.text | highlight: $select.search"></div>
    </ui-select-choices>
</ui-select>

^在此处获取要显示的占位符。。。只需制作

$scope.selectedChannel = null;

希望它能帮助。。。

相关内容

  • 没有找到相关文章

最新更新