我可以這樣獲取數組,我可以看到它在我的控制檯NG重複不工作
0 : Object
1
:
Object
2
:
Object
3
:
Object
4
:
Object
5
:
Object
6
:
Object
7
:
Object
8
:
Object
9
:
Object
10
:
Object
11
:
Object
12
:
Object
13
:
Object
14
:
Object
15
:
Object
16
:
Object
17
:
Object
18
:
Object
在每個陣列有值這樣的例如第0陣列包含此
0:object
id : 8726
name : "aman"
slug : "aman"
type : "Drug"
角JS
$scope.keyup = function (data) {
$http({
url: 'myapi?q='+data,
method: "GET",
}).success(function(response){
$scope.results = response.data;
});
$scope.$watch('userInput',function(){
var key =$scope.$$watchers[0].last;
$scope.keyup(key) }); //this is because ng-keypress was not working but this is not an issue
HTML
<a ng-repeat="item in results" ng-href="#">
<div>{{item.name}}</div>
</a>
我可以看到在控制檯中的數組,但我不知道爲什麼NG重複工作不
對其做.. IDK的爲什麼,但解決的辦法是這麼這麼這麼差
$scope.results = response.data;
$rootScope.vars = $scope.results
是在控制器中的HTML標籤,其中KEYUP函數寫的? –
'我可以像這樣取數組,我可以在我的控制檯上看到它'你的意思是'$ scope.results'嗎? –
小例子演示這個問題將是很好的:http://plnkr.co/ –