在聚合物模板中:dom-repeat items - 是否可以重复重复项目?
答案 0 :(得分:0)
是的,使用排序函数将随机分配项目位置而不是实际排序。
<template is="dom-repeat" items="[[items]]" sort="_sortItems" initial-count="1">
<a href$="#[[section]]/[[item.id]]" class="item" aria-label$="More information about [[item.title]]">
<shrine-item item="[[item]]"></shrine-item>
</a>
</template>
_sortItems: function() {
return Math.round(Math.random()*3) - 1;
}