这是角度代码:
angular.forEach($scope.teams, function(value){
Dashboard.get({dashboardCtrl: "team",guid: value.guid}, function(response){
});
});
谢谢,
答案 0 :(得分:1)
"team"
之后的逗号不是一个正确的逗号。将,
替换为,
,因为JavaScript无法理解该令牌是什么。