1

我在我的项目中使用了 Siyfion 的 typeahead 指令。

我在控制器中所做的事情是这样的:

$http({method: 'GET', 'url': CONFIG.SOMEURL})                             
    .success(function(data, status, headers , config){                       
    if(status==200)                                                          
    {                                                                        
        $scope.objects = data;                                                
        for(i=0; i < $scope.objects.length; i++){                             
            $scope.allObjects.push($scope.objects[i].name);  
        }                                                                    
        console.log($scope.allObjects);                                       

$scope.dataSet = {                                                           
    name : 'objs',                                                         
    local : $scope.allObjects                                                                                                             
};                

django我从视图中得到一个“对象”数组作为 json 。但问题出在我的 HTML 模板中:

<input type="text" class='sfTypeahead' datasets='dataSet' ng-model='testname' />

由于dataSet在进行异步调用时最初是空的,我收到一个错误:

TypeError: Cannot read property 'name' of undefined

有没有办法如果我可以在数组被填充后立即查找更改dataSet,DOM 可能会被刷新?datasetsallObjects

谁能建议在这里可以做些什么

4

1 回答 1

1

全面披露:我是上述指令的作者。

本质上,当 Typeahead.js 和 Bloodhound 专门为您设计时,您正在尝试在 Angular 本身中完成所有预取。好好看看https://twitter.github.io/typeahead.js/examples/并特别注意 Bloodhound 建议引擎。

也许有一些用处:

注意:您使用的指令版本(9 个月前)不支持更新数据集局部变量,但现在支持更新,因此如果您愿意,可以这样做。

于 2014-08-13T13:15:02.643 回答