0
所以我試圖在我的每個循環中獲得一個索引。這可能嗎。這是我的代碼:薩斯與索引每個循環
@each $food, $tons-produced in $top-foods {
$i: index($top-foods, $food);
rect:nth-child(#{$i + 1}){
}
}
哪個返回一個「無效的空操作:'null加1'。」
所以它沒有索引和$我是空的。
我也試過$i: index($top-foods, ($food, tons-produced));
這裏是我的名單我eaching通過:
$top-foods: ("Sugar Cane" 1898),
("Corn" 1017),
("Rice" 738),
("Wheat" 711),
("Cow Milk" 635),
("Potatoes" 374),
("Vegetables" 279),
("Soy Beans" 278),
("Cassava" 263),
("Sugar Beets" 247);