5

这是我在 angular ui-select 中得到的完整错误

Error: [$interpolate:interr] Can't interpolate: {{$select.getPlaceholder()}} TypeError: Cannot read property 'length' of undefined

我的标记是:

  <ui-select multiple ng-model="case.keywords" theme="bootstrap">
    <ui-select-match placeholder="Select keywords...">{{$item.name}}</ui-select-match>
    <ui-select-choices repeat="keywords in keywords | filter: $select.search">
      <div ng-bind-html="keyword.name | highlight: $select.search"></div>
    </ui-select-choices>
  </ui-select>
<p>Selected: {{case.keywords}}</p>

get除了从 db.ting 关键字数组之外,控制器中没有什么特别的。显然ngSanitizeui.select都包含在模块依赖项中。

我遇到的另一个问题是选择不可见。我能够显示选定的选项,但选项列表不可见。我正在使用引导主题,select.css被引用。这是它的样子

在此处输入图像描述

谢谢您的帮助。

4

1 回答 1

2

来自@SunilVurity 和@Fiver 的问题给了我提示,引导我解决问题:

首先keywords改为keyword

<ui-select-choices repeat="keywords in keywords | filter: $select.search">

在我的控制器中,我有第二个:

appFactory.getKeywords().then(function (keywords){
  $scope.keywords = keywords;
  $scope.case = {};
  $scope.case.selectedKeywords = [];
});

我改为:

$scope.case = {};
$scope.keywords = [];
learningCasesFactory.getKeywords().then(function (keywords){
  $scope.keywords = keywords;
  $scope.case.selectedKeywords = [];
});

正如您在控制器中看到的那样,该get函数是异步的,它在加载时向视图返回一个未定义的列表,这导致了我在问题中提到的错误。更新控制器后,错误消失了。这个 SO question 帮助了AngularJS Interpolation Error

第三uiselectangular版本可能会导致问题。我的角度版本是 1.2.9。这个ui-select Github issue显示升级 angular 版本解决了问题,我升级到 1.3.11

感谢@SunilVurity 和@Fiver

于 2015-02-02T16:59:30.180 回答