0

我用收集重複下面MD-格磚,離子收集重複的問題

<md-grid-tile collection-repeat="record in records" md-rowspan="1" 
md-colspan="1" md-colspan-sm="1" > 
<!--- Rest of code ---> 
</md-grid-tile> 

但是當我運行它,它會在控制檯中顯示錯誤這樣的。

Error: collection-repeat tried to compute the height of repeated elements "record in records", but was unable to. Please provide the "item-height" attribute

有什麼辦法解決這個問題?

+0

以及錯誤似乎很清楚和具體。你有沒有嘗試設置'項目高度'? – kachhalimbu

+0

您應該閱讀'collection-repeat'的[docs](http://ionicframework.com/docs/api/directive/collectionRepeat/)。 – QueryLars

+0

是的,我沒有設置,因爲我需要,它從集合獲取高度和寬度本身 - 重複 – Walker

回答

2

collection-repeat適用於item-heightitem-width。當這些不提供時,它假定集合中的所有元素將具有與第一個元素相同的高度。當離子無法計算時,它會在您的收集重複元素中查找項目高度屬性。

+1

有沒有什麼辦法來動態計算高度和寬度 – Walker

+0

還沒有。也許看看文檔。他們在近期更新的離子版中徹底收集了重複收集。 (1.0.0) –