我有一個HTML <select>
標籤:
Document type <select class="form-control" name="document_type" ng-model="document_type"
ng-options="opt as opt.label for opt in options" required>
我已經在我的模型的範圍內保存的options
變量:
$scope.options = [{
label : '',
value : ''
}, {
label : "ID card",
value : "ID card"
}, {
label : 'Passport',
value : 'Passport'
}, {
label : 'Driving license',
value : 'Driving license'
} ];
這樣我有以下字段:
我的目標是設置document_type
「變量」使用$scope
:
$scope.document_type = "Passport"
,但它不工作和<select>
領域保持空白。
是已知的和有限的文檔類型的數量? – FDavidov
是的。在我的照片中只有三種選擇可以看到。 – DistribuzioneGaussiana
看到我剛剛發佈的解決方案。 – FDavidov