gpt4 book ai didi

polymer - 1.0 中的条件属性

转载 作者:行者123 更新时间:2023-12-02 12:09:11 25 4
gpt4 key购买 nike

是否可以使用conditional attributes在 polymer 1.0中?我尝试在 the migration guide 中找到它以及 Road 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>

最佳答案

请参阅文档 here .

您想要做的是:

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

关于polymer - 1.0 中的条件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31380398/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com