-1
這是角碼:爲什麼代碼給我「未捕獲的SyntaxError:意外的標記非法」
angular.forEach($scope.teams, function(value){
Dashboard.get({dashboardCtrl: "team",guid: value.guid}, function(response){
});
});
感謝,
這是角碼:爲什麼代碼給我「未捕獲的SyntaxError:意外的標記非法」
angular.forEach($scope.teams, function(value){
Dashboard.get({dashboardCtrl: "team",guid: value.guid}, function(response){
});
});
感謝,
你有"team"
逗號後是不正確的逗號。由於JavaScript不理解該標記是什麼,因此將,
替換爲,
。
下次馬上用[JSHint](http://jshint.com/)提問。 – Xufox