上代碼:
for (var i = 1; i < 7; i++) { var res='res'+i; $scope.res=XXXX; };
變數名稱是由字串res加i構成的,就是res1--res6;如何在$scope之後連接一個拼接的變數名稱呢? $scope.res+i或$scope[res+i]這樣都是不行的
感謝回答:最終的答案是不能點.連結變數
ringa_lee
$scope[res] = xxxxx;
for (var i = 1; i 雷雷
}
首先 res應該是個數組,$scope.res=[];
for (var i = 1; i $scope.res.push('res'+i);}
大概這樣寫。
$scope["res"+i]這樣寫就可以了
$scope[res] = xxxxx;
for (var i = 1; i 雷雷
}
首先 res應該是個數組,
$scope.res=[];
for (var i = 1; i $scope.res.push('res'+i);
}
大概這樣寫。
$scope["res"+i]這樣寫就可以了