1
我很滿意Dart的新功能。Dart枚舉 - 聚合物
但是,我想在web組件(聚合物)
像這樣使用:
file.dart
enum Categoria {ID, DESCRICAO, NATUREZA, ID_SUBCATEGORIA_DA, DESCRICAO_SUBCATEGORIA_DA, ATIVO}
@published
Map itemList;
file.html
。 。
<template>
<paper-input value="{{itemList[Categoria.ID]}}"></paper-input>
</template>
<script type="application/dart" src="file.dart">
</script>
..
在對價值@published有一個地圖itemList中,我想用枚舉Categoria.ID重點查找地圖的價值。
它可能在Web組件(聚合物)?