如果我有一个枚举,例如:
@Component(...)
class MyComponent {
MyEnum myEnum;
...
}
Run Code Online (Sandbox Code Playgroud)
如何在模板中使用此枚举?例如
<div *ngIf="myEnum == MyEnum.SOME_OPTION">
...
</div>
Run Code Online (Sandbox Code Playgroud)
编辑:我对如何使用枚举进行比较特别感兴趣。
我如何从 Dart 中调用这样的代码?
$('.datepicker').datepicker();
Run Code Online (Sandbox Code Playgroud)
我知道我可以使用“package:js/js.dart”包调用函数,如下所示
@JS("Plotly.plot")
external plot(DivElement element, List<PlotData> plotData, Margin margin);
Run Code Online (Sandbox Code Playgroud)
...但是在元素上调用函数?