在 Polymer 模板中:dom-repeat items - 是否可以随机播放重复项目?
问问题
89 次
1 回答
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;
}
于 2017-04-09T00:45:37.093 回答