如何检查属性是否在声明 Polymer 中
How check if attributes is in declaration Polymer
假设我有一个定义为
的自定义元素
<polymer-element name="my-elem" >
<template if={{show_is_in_my_declaration?}}>
....
</template>
<script>
Polymer('my-elem', {});
</script>
要使用它,我想将其声明为...
<my-elem show></my-elem>
其中包含'show
',使模板出现;类似于“flex
”或“fit
”之类的元素如何影响元素。这叫什么,如何实现。
注意:我不想写类似show="{{true}}"
的东西
它叫做条件模板。
这是文档:
https://www.polymer-project.org/docs/polymer/template.html#if
以下是有关如何使用它们的一些示例:
https://github.com/Polymer/TemplateBinding/tree/master/examples/how_to
假设我有一个定义为
的自定义元素<polymer-element name="my-elem" >
<template if={{show_is_in_my_declaration?}}>
....
</template>
<script>
Polymer('my-elem', {});
</script>
要使用它,我想将其声明为...
<my-elem show></my-elem>
其中包含'show
',使模板出现;类似于“flex
”或“fit
”之类的元素如何影响元素。这叫什么,如何实现。
注意:我不想写类似show="{{true}}"
它叫做条件模板。
这是文档: https://www.polymer-project.org/docs/polymer/template.html#if
以下是有关如何使用它们的一些示例: https://github.com/Polymer/TemplateBinding/tree/master/examples/how_to