可以在dart聚合物表达式中访问静态字段吗?
在我的模板中,我需要从知道类中访问一些静态值,如何在聚合表达式中访问它?
答案 0 :(得分:1)
我不知道直接访问它的方法。我认为您需要为要使用该值的Polymer元素创建一个getter。
您还可以创建一个可以访问静态值的mixin。
另一种解决方案是创建一个组件,该组件提供对静态值的访问并像
一样使用它<polymer-element name="xx-yy">
<template>
<my-const id="my-const"></my-const>
<template if="{{$['my-const'].isDebug}}">
some debug output
</template>
</template>
</polymer-element>