0
我有一個對象數組「休假」angularjs + jquery:如何在Foreach循環中訪問數組中的數組元素?
$scope.Vacations = [{Id:'1' ,VacationType = {TypeId='1' ,TypeName = 'test'}}];
它包含其他對象數組「VacationType」一個只設置
我想提取TYPEID
我做了財產以後這樣的:
$scope.selectedVacationType = [];
$scope.TypeTd;
$scope.selectedVacationType=Vacations.VacationType;
$scope.TypeTd;= $scope.selectedVacationType[0].Id;
但這不起作用
可以做些什麼?