0
我使用下面的HTML和JavaScript來填充選擇框填充在第二選擇列表選項:怎樣才能讓一個值從選擇列表中選擇使用AngularJS
<select data-ng-model="selectedTestAccount" data-ng-options="item.Id as item.Name for item in testAccounts">
<option value="">Select Account</option>
</select>
<script type="text/javascript">
angular.module('test', []).controller('TestCtrl', function ($scope, $http) {
$scope.selectedTestAccount = null;
$scope.testAccounts = [];
$http({
method: 'GET',
url: '/Admin/Exams/GetTestAccounts',
params: { applicationId: 3 }
}).success(function (result) {
$scope.testAccounts = result;
});
});
angular.bootstrap(angular.element("body")[0], ["test"]);
</script>
這工作正常,但現在我需要有另一個選擇列表,當用戶從第一個選擇列表中選擇一個值時選擇主題。我覺得這是我會成立的選擇和從服務器獲取數據的方式:
<select data-ng-model="selectedTestAccount" data-ng-options="item.Id as item.Name for item in testAccounts">
<option value="">Select Account</option>
</select>
<select data-ng-model="selectedSubject" data-ng-options="item.Id as item.Name for item in subjects">
<option value="">Select Subject</option>
</select>
...
$http({
method: 'GET',
url: '/Admin/GetSubjects',
params: { testAccountId: selectedTestAccount }
}).success(function (result) {
$scope.subjects = result;
});
我怎樣才能讓這樣,當用戶從第一個選擇框中的值,那麼它會去數據庫 並選擇主題並填充第二個選擇框。
感謝您的幫助的。鑑於我的第一選擇是什麼,我需要注意的價值,然後我怎麼能得到所選擇的價值,所以我可以做我的電話? – Alan2
是不是首先選擇模型'$ scope.testAccounts'?如果這樣的話代碼已經在看,你發送的值是'$ scope.testAccounts' – charlietfl