回答

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; 
}