1.0中的条件属性

时间:2015-07-13 10:01:14

标签: polymer polymer-1.0

是否可以在Polymer 1.0中使用conditional attributes? 我试图在the migration guideRoad to polymer中找到它但没有成功。

我知道在Polymer 1.0中有一个新的conditional template,但我不想复制我的代码。

所以在0.5版本中我们可以有类似的东西:

<input readonly?={{my-boolean-expression}} (...)>

而且,在1.0中,我们应该使用模板吗?

<template is="dom-if" if="{{my-boolean-expression}}">
      <input readonly (...)>
</template>
<template is="dom-if" if="!{{my-boolean-expression}}">
       <input (...)>
</template>

1 个答案:

答案 0 :(得分:7)

请参阅文档here

您想要做的是:

<input readonly$="{{my-boolean-expression}}">