我有一个对象数组“假期”
$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;
但这不起作用
可以做什么?