jsonを使用して従属ドロップダウンリストボックスを作成しようとしています。たとえば、選択した車のブランドが「bmw」の場合、車のモデルのドロップダウンにリストから「suv」のみが表示され、 「メルセデス」と同様に、車種には「SUV」と「クーペ」のみが表示されます。また、jsonの使用方法を教えてください。コードにどのように影響するかjsonを使用してドロップダウンリストを作成する方法は?
my.html
Car Brand:
<select name="carname" ng-model="userSelect" required>
<option value="">--Select--</option>
<span ng-show="valdate.carname.$error.required">Car name</span>
<option ng-repeat="ManufactureBrand in a" ng-bind="ManufactureBrand" >
{{ManufactureBrand}}
</option>
</select>
<br/>
<br/> Car Model:
<select name="carmodel" ng-model="selectCar" required>
<option value="">--Select--</option>
<span ng-show="valdate.carmodel.$error.required">Car name</span>
<option ng-repeat="CarName in b" ng-bind="CarName">
{{CarName}}
</option>
</select>
<br/>
<input type="submit" ng-click="checkselection()" ng-disabled="valdate.carname.$invalid && valdate.carmodel.$invalid">
script.js
app.factory('Brandtest', function() {
var brand = {};
brand.sample = ['Bmw', 'Mercedes', 'Honda'];
brand.car = ['Suv', 'Sedan', 'Cope'];
{
return brand;
}
});
app.controller('selectDropdown', ['$scope', 'Brandtest', function ($scope, Brandtest) {
$scope.a = Brandtest.sample;
$scope.b = Brandtest.car;
$scope.list=[];
$scope.carlist=[];
$scope.checkselection = function() {
if ($scope.userSelect != "" && $scope.userSelect != undefined &&
$scope.selectCar != "" && $scope.selectCar != undefined)
{
$scope.list.push($scope.userSelect);
$scope.carlist.push($scope.selectCar);
}
事前に感謝します。
依存関係を持つドロップダウンをレンダリングする際のパターンは何ですか? –
車の最初のドロップダウン、つまり車のブランドは、車のブランド名を表示する必要があります。特定の自動車ブランドを選択すると、次のドロップダウンでその自動車ブランドに関連する車名のみが表示されます。 @StarkButtowski – Rudhra
valdateとは何ですか?フォームタグの場合はどこですか? –