我有下面的代碼工作:佔位符不angular2
<div class="form-group" [class.has-error]="!account.value && !account.pristine">
<label class="sr-only" for="account">Account</label> <select class="form-control" required [(ngModel)]="model.accountId" ngControl="account" #account="ngForm">
<option value="" disabled="disabled" selected="selected">Account</option>
<option *ngFor="#acc of accounts" [value]="acc.id">{{acc.name}}</option> </select>
</div>
其中佔位符不與ANGULAR2工作。
如果您需要更多信息,請讓我知道嗎?
請,包括代碼作爲文本而不是圖片。它會使其他人更容易幫助您 – Bustikiller
得到解決。看看我的回答 – uksz