我用收集重複下面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
有什麼辦法解決這個問題?
以及錯誤似乎很清楚和具體。你有沒有嘗試設置'項目高度'? – kachhalimbu
您應該閱讀'collection-repeat'的[docs](http://ionicframework.com/docs/api/directive/collectionRepeat/)。 – QueryLars
是的,我沒有設置,因爲我需要,它從集合獲取高度和寬度本身 - 重複 – Walker