我在下面使用了md-grid-tile的collection-repeat,
<md-grid-tile collection-repeat="record in records" md-rowspan="1"
md-colspan="1" md-colspan-sm="1" >
<!--- Rest of code --->
</md-grid-tile>
但是当我运行它时,它会在控制台中显示如下错误。
错误:collection-repeat尝试计算重复元素“记录在记录中”的高度,但无法计算。请提供“item-height”属性
有没有办法解决这个问题?
答案 0 :(得分:2)
collection-repeat
适用于item-height
和item-width
。如果未提供这些元素,则假定集合中的所有元素与第一个元素具有相同的高度。当离子无法计算时,它会在集合重复元素中查找item-height属性。