0

如何将嵌套的 sass 地图隔离到新地图中?例如,我有这样的 sass 地图:

$susy-setting: (
  s: (
    'columns': 4,
    'gutters': 30px,
  ),

  m: (
    'columns': 8,
    'gutters': 30px,
  ),

  l: (
    'columns': 12,
    'gutters': 30px,
  )
);

然后我需要在循环之后隔离每个映射,因为我的其他 mixin 需要映射作为它的参数。

@each $setting in $susy-setting{
    @include susy-settings-block($setting) { // This mixin need map
        @for $i from 1 through map-get($setting, 'columns') {
            @content;
        }
    }
}
4

1 回答 1

0

要回答您的主要问题,您需要在循环中同时获取键和值:@each $size, $setting in $susy-setting. 变量将$size存储键(例如s, m, l),而$setting变量存储分配给该键的映射值。

编辑:我看到了你对我的要点的评论,它提供了更多的背景信息。尝试这个:

@mixin susy-settings-block(
  $name, 
  $config: $susy-settings
) {
  // store the old settings
  $global: $susy;

  // Get the new settings by name
  $new: map-get($config, $name);

  // apply the new settings
  $susy: map-merge($susy, $new) !global;

  // allow nested styles, using new settings
  @content;

  // return to the initial settings
  $susy: $global !global;
}
于 2017-06-08T22:10:59.640 回答