gpt4 book ai didi

sass - 从 Sass 映射中获取数字而不是字符串

转载 作者:行者123 更新时间:2023-12-05 03:55:37 25 4
gpt4 key购买 nike

我正在构建一个 sass mixin,我在其中根据从 map 获得的值进行计算。这就是我的这张 map :

$icons: (
search: 1,
arrow: 2,
home: 3
);

还有这个 mixin(针对这篇文章进行了简化):

@mixin addIcon($icon: 'arrow'){
@if map-has-key($icons, $icon) {
$posIcon: #{map-get($icons, $icon)};
$posX: $posIcon * 48;
@debug $posX;
}
}

现在,当我编译它时出现错误,因为 map 中的值不是数字而是字符串。所以在这种情况下,值 2 是一个字符串。我找到了一种使用此方法将其更改为数字的方法:

@function number($value) {
@if type-of($value) == 'number' {
@return $value;
} @else if type-of($value) != 'string' {
$_: log('Value for `to-number` should be a number or a string.');
}

$result: 0;
$digits: 0;
$minus: str-slice($value, 1, 1) == '-';
$numbers: ('0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9);

@for $i from if($minus, 2, 1) through str-length($value) {
$character: str-slice($value, $i, $i);

@if not (index(map-keys($numbers), $character) or $character == '.') {
@return to-length(if($minus, -$result, $result), str-slice($value, $i))
}

@if $character == '.' {
$digits: 1;
} @else if $digits == 0 {
$result: $result * 10 + map-get($numbers, $character);
} @else {
$digits: $digits * 10;
$result: $result + map-get($numbers, $character) / $digits;
}
}

@return if($minus, -$result, $result);;
}

然后:

@mixin addIcon($icon: 'arrow'){
@if map-has-key($icons, $icon) {
$posIcon: #{map-get($icons, $icon)};
$posX: number($posIcon) * 48;
@debug $posX;
}
}

但我觉得一定有更简单的方法来做到这一点。如何确保 map 中的值是数字而不是字符串?

最佳答案

你得到一个字符串作为值,因为你 interpolate map-get 的结果。如果你去掉插值,你会得到一个数字:

@mixin addIcon($icon: 'arrow'){
@if map-has-key($icons, $icon) {
$posIcon: map-get($icons, $icon);
$posX: $posIcon * 48;
@debug $posX;
}
}

关于sass - 从 Sass 映射中获取数字而不是字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60108999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com