1

以下是我的html:

<div class="input-group">
  <span class="input-group-addon"><%= fa_icon "search" %></span>
  <input type="text" class="form-control" placeholder="Search" ng-model="selectedFirm" uib-typeahead="n as n.message for notification in notifications|filter:$viewValue">
</div>

以下是我的咖啡脚本

class NavbarController
    constructor: ($scope) ->
      $scope.notifications_open = false
      $scope.notifications = [
        {message:'hey'},
        {message:'hello'},
        {message:'hola'}
      ]

每当我输入预输入时,结果都会以正确的方式过滤,但只显示未定义而不是消息。

我正在使用 AngularJS v1.4.9 和 ui.bootstrap 版本:1.1.2

4

0 回答 0