使用Angular UI Directive Typeahead重定向到链接

时间:2013-06-27 19:23:46

标签: angularjs angular-ui-bootstrap

我正在为项目使用Angular UI Bootstrap typeahead指令,我想根据typeahead中选择的内容重定向到动态URL。我正在尝试将typeahead用作搜索框。

我查看了文档(尝试RTFM),所以我知道我可以使用typeaheadOnSelect属性,但我不知道如何将其与链接联系起来。我正在使用对象的JSON文件,每个对象都有一个特定的ID。我希望能够直接在typeahead属性中链接,如下所示:

<div class='container-fluid' ng-controller="TypeaheadCtrl">
        <input type="text" id="search" ng-model="selectedPerson" typeahead="person as person.name for person in person | filter:$viewValue" typeahead-min-length="3" typeaheadOnSelect="#/100_Ages/{{person.id}}" ng-init="" />
    </div>

但那没用。我想我需要一个特定的控制器,但我不确定。 typeahead指令似乎工作得很好,所以我想有一个简单的解决方案,但我找不到它。

现在,我的Typeahead控制器看起来像这样:

function TypeaheadCtrl($scope, $http) {
  $http.get('person.json').success(function(data) {
      $scope.person = data;
      });
}

This plunkr显示了所有内容。我的路由器是使用基于每个JSON id的动态URL设置的,如下所示:

angular.module('app', ['ui.bootstrap']).
    config(['$routeProvider', function($routeProvider) {
    $routeProvider.
        when('/app/:personId', {templateUrl: 'partials/person.html', controller: DetailCtrl}).
    }]);

1 个答案:

答案 0 :(得分:3)

您可以观察对selectedPerson模型的更改。这是一个例子:

function TypeaheadCtrl ($scope, $http, $location, $log, $timeout) {
  $http.get('person.json').success(function(data) {
      $scope.person = data;
  });
  $scope.$watch('selectedPerson', function(newValue, oldValue) {
    if (newValue){
      $log.info('/100_Ages/' + $scope.selectedPerson.id);
      $location.path('/100_Ages/' + $scope.selectedPerson.id);
    }
  });
}

已更新:更新到v0.4.0后,我能够执行此操作:

function TypeaheadCtrl ($scope, $http, $location, $log, $timeout) {
  $http.get('person.json').success(function(data) {
      $scope.people = data;
  });
  $scope.onSelect = function($item, $model, $label){
    $scope.$item = $item;
    $scope.$model = $model;
    $scope.$label = $label;
    $log.info($scope.$item);
    $log.info($scope.$model);
    $log.info($scope.$label);
    $location.path('/person/' + $scope.$item.id);
  }
}

然后在HTML中,我这样做了:

<input type="text" id="search" placeholder="Search for a name or age" ng-model="selectedPerson" typeahead="person.id as person.name for person in people | filter:$viewValue" typeahead-on-select="onSelect($item, $model, $label)" typeahead-min-length="3" ng-init="" />