ように私はここで、属性ディレクティブ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
にいくつかの値を渡すことを希望オプションのリスト
EDIT
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が行った。何もそれに何もtho。ありがとう! – kyw