1
:私は取得しています角度2:パイプパラメータとして列挙私は、パラメータとして以下の方法列挙型を使用しようとしています
@Component({
selector: 'app-my-component',
templateUrl: './my.component.html',
styleUrls: ['./my.component.css']
})
export class MyComponent implements OnInit {
MyEnum: MyEnum;
....
}
::私はMyEnumが定義されているコントローラで
<div> {{ myValue | myPipe: MyEnum.ENUM_VAL }} </div>
をTypeError:未定義の 'ENUM_VAL'プロパティを読み取れません
どのような使い方が適切ですか?
最初の質問: 'MyEnum' *変数はどこに定義されていますか? – developer033
、MyComponentにある –
どこですか?つまり、初期化する必要があります(内部のコンストラクタまたはngOnInit) 'this.MyEnum = MyEnum.SOMETHING;'、そうではありませんか? – developer033