我想更新表单页面上的内插文本,并在用户在
<div class="form-group row">
<label for="unitlabel" class="col-sm-2 col-form-label">Units</label>
<select name="Units"
[(ngModel)] = "units"
(onTouched)="updateUnits()">
<option value="US" selected>US</option>
<option value="Metric">Metric</option>
</select>
</div>
LISTEN to the change
event
<select name="Units"
[(ngModel)] = "units"
(change)="updateUnits()">