通行證的值,所以我有一個屬性指令appGetCurrency
在這裏:角2:從屬性指令作爲一個組件變量
<md-select appGetCurrency [(ngModel)]="value" placeholder="Currency" name="currency">
<md-option *ngFor="let c of currencyList" [value]="c.code">{{c.dsc}}</md-option>
</md-select>
我想的是,appGetCurrency
指令傳遞,以建立一些值的currencyList
選項列表。
編輯
的appGetCurrency
指令剛剛從服務中獲得貨幣的列表,然後我想該列表傳遞給currencyList
變量在主機模板:
@Directive({ selector: '[appGetCurrency]' })
export class CurrencyDirective {
currencies;
constructor() {
// build the <md-options> based on 'currencies'
this.currencies = this.service.getCurrencies('asia');
}
}
你能顯示該指令嗎?它有什麼作用? – jonrsharpe
@jonrsharpe完成。沒什麼太多。謝謝! – kyw