我正在学习聚合物。现在,我试图有条件地显示模板。
我-component.html
<dom-module id="my-component">
<template>
<h5>There are <span>[[ orders.length ]]</span> orders.</h5>
<template is="dom-if" if="[[ orders.length > 0]]">
<template is="dom-repeat" items="{{ orders }}" as="order">
<div class="order-item">
<span>[[ order.description ]]</span>
</span>
</template>
</template>
<template is="dom-if" if="[[ orders.length == 0]]">
No orders have been placed
</template>
</template>
<script>
Polymer({
is: "my-component",
properties: {
orders: Array
}
});
</script>
</dom-module>
我的问题是,如果我的数组中有项目,我如何显示一个HTML块?如果数组没有任何项目,我如何显示另一个HTML块? h5
标记显示正确的项目数。出于这个原因,我知道我的绑定设置正确。但是,我不知道如何有条件地显示模板。
谢谢!
答案 0 :(得分:3)
Polymer不支持那种expressions in binding。通常,如果您需要表达式,则需要使用computed bidings。在这种特定情况下,因为0评估为false
而其他值评估为true
,您可以这样做:
<template is="dom-if" if="[[ orders.length ]]">
<template is="dom-repeat" items="{{ orders }}" as="order">
<div class="order-item">
<span>[[ order.description ]]</span>
</div>
</template>
</template>
<template is="dom-if" if="[[ !orders.length ]]">
No orders have been placed
</template>