@each索引循环


69

我想知道是否可以为@each循环获取元素索引。

我有以下代码,但我想知道$i变量是否是执行此操作的最佳方法。

当前代码:

$i: 0;
$refcolors: #55A46A, #9BD385, #D9EA79, #E4EE77, #F2E975, #F2D368, #F0AB55, #ED7943, #EA4E38, #E80D19;

@each $c in $refcolors {
    $i: $i + 1;
    #cr-#{$i} strong {
        background:$c;
    }   
}

Answers:


112

首先,该@each功能不是来自Compass,而是来自Sass。


要回答您的问题,这不能通过each循环来完成,但是很容易将其转换为@for可以执行以下操作的循环:

@for $i from 1 through length($refcolors) {
    $c: nth($refcolors, $i);

    // ... do something fancy with $c
}

61

更新此答案:是的,您可以使用@each循环来实现:

$colors-list: #111 #222 #333 #444 #555;

@each $current-color in $colors-list {
    $i: index($colors-list, $current-color);
    .stuff-#{$i} { 
        color: $current-color;
    }
}

资料来源:http : //12devs.co.uk/articles/handy-advanced-sass/


19
不幸的是,如果$ colors-list包含2个相同的值(例如#111,#222,#111,#333),则此方法会中断。在这种情况下,index($ colors-list,#111)将始终返回1,因此您的$ i值将显示为1、2、1、4。可耻的是,否则这是一种非常简洁的方法:)
Joel

3
这也是1索引,而不是通用的0索引
Francisco Presencia,2016年

17

有时您可能需要使用数组或映射。我有一个数组数组,即:

$list = (('sub1item1', 'sub1item2'), ('sub2item1', 'sub2item2'));

我发现将其转换为对象最简单:

$list: (
    'name': 'thao',
    'age': 25,
    'gender': 'f'
);

并使用以下代码获取$i

@each $property, $value in $list {
    $i: index(($list), ($property $value));

Sass团队还建议了以下建议,尽管我不太喜欢:

[...]上面的代码是我要解决的方法。通过添加诸如range($ n)之类的Sass函数,可以使其效率更高。所以那个range(10)=>(1,2,3,4,5,6,7,8,9,10)。然后枚举可以变成:

@function enumerate($list-or-map) {
    @return zip($list-or-map, range(length($list-or-map));
}

链接。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.