我正在尝试创建一个包装twitter typeahead插件的指令。到目前为止我所拥有的是:
HTML:
<input ng-twitter-typeahead type="text" ng-model="participant" data="exampleData" />
{{ participant }}
我想在typeahead上选择某些内容时更新'参与者'的值。预先输入本身正常,但我无法捕获所选值。以下是javascript:
var app = angular.module('myApp', [])
app.directive('ngTwitterTypeahead', function () {
return {
restrict: 'EA',
scope: {
data: '='
},
link: function ($scope, $element, $attrs) {
$element.typeahead($scope.data);
$element.bind('typeahead:selected', function(obj, datum) {
// I really don't know how to do this part
// the variable 'datum' is what I want to be passed to ng-model
// I tried things like:
// Including the ngModelController and typing:
// ngModel.$setViewValue(datum)
// but that didn't work.
}
};
});
当谈到AngularJS时,我显然缺少一些基本的东西。任何帮助将不胜感激!
编辑**
我找到了解决方案。我有时无能为力:
angular.module('siyfion.ngTypeahead', [])
.directive('ngTypeahead', function () {
return {
restrict: 'C',
scope: {
datasets: '=',
ngModel: '='
},
link: function ($scope, $element, $attrs) {
$element.typeahead($scope.datasets);
$element.bind('typeahead:selected', function(obj, datum) {
$scope.$apply(function() {
$scope.ngModel = datum;
});
})
}
};
});
答案 0 :(得分:21)
您可以在指令中使用ngModel
控制器。它将允许您访问link
函数内的模型控制器,请参阅http://docs.angularjs.org/api/ng.directive:ngModel.NgModelController
在这里,您可以找到如何将其用于现实生活http://suhairhassan.com/2013/05/01/getting-started-with-angularjs-directive.html#.UhSdDOZdXUE
的示例答案 1 :(得分:0)
here似乎被抛弃了。
但您可以使用截至目前正在积极维护的The twitter Typeahead project中的the Typeahead Angular directive。