2
我想角2下拉電流值,以獲得基於的ngModel
價值選擇的值下拉:無法在ngModel
<div class="form-group">
<div>
<label class="dropdown" for="profile">Profile <span style="color:red">*</span></label>
</div>
<div class="half">
<select class="form-control" name='profile' [(ngModel)]='users.profile._id' required>
<option *ngFor="let obj of profiles" [value]="obj._id">{{obj.profile}}</option>
</select>
</div>
</div>
當值爲字符串時,'value'應該仍然沒問題,只有當值是其他類型時'ngValue'是必需的AFAIK。 –
@GünterZöchbauer我不知道這一點。然後OP的問題是'users.profile._id'不匹配任何'obj._id'。 –
可能是因爲它是例如一個數字,即使JS通常不介意將'1'與'1'比較。我只是確定它應該與字符串值一起工作。 –