gpt4 book ai didi

css - 如何在嵌套 sass 映射 (SCSS) 中执行 'if' 语句?

转载 作者:行者123 更新时间:2023-11-28 17:13:58 25 4
gpt4 key购买 nike

由于我是 sass (SCSS) 的新手,看来我的野心目前超过了我的能力。有人可以帮助我完成以下任务。


背景

我们目前有一个具有两种不同文件格式的图标系统;一个是 PNG,另一个是 SVG。我们的一些图标有两种文件类型,有些有 PNG 或 SVG。我希望能够单独列出它们。

这是我的 SCSS 变量映射。

$image-path: "http://www.mywebsite.com/assets/img/icons";
$icons-map: (
tick: (
filename: icons_tick,
has-png: true,
has-svg: false,
),
secure: (
filename: icons_secure,
has-png: true,
has-svg: true,
),
checkout: (
filename: icons_checkout,
has-png: false,
has-svg: true,
),
);

以及我如何尝试列出它们...

/* Standard (PNG) Icons */
@each $icon-type, $icon-file in $icons-map {
@if $has-png == "true" {
.icon-#{$icon-type}:after {
background-image: url('#{$image-path}/png/#{$filename}.png');
}
}
}

/* Advanced SVG icons (progressive enhancement for newer mobiles, retina-style displays, etc) */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
@each $icon-type, $icon-file in $icons-map {
@if $has-svg == "true" {
.icon.#{$icon-type}:after {
background-image: url('#{$image-path}/svg/#{$filename}.svg');
}
}
}
}

唯一的问题是它似乎没有计划......我有什么地方错了吗?我假设这是我循环遍历嵌套 map 的方式,或者我设置“if”语句的方式。

我本来期望输出是这样的;

/* Standard (PNG) Icons */
.icon.tick {
background-image: url('http://www.mywebsite.com/assets/img/icons/png/icons_tick.png');
}
.icon.secure {
background-image: url('http://www.mywebsite.com/assets/img/icons/png/icons_secure.png');
}
/* Advanced SVG icons (progressive enhancement for newer mobiles, retina-style displays, etc) */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
.icon.secure {
background-image: url('http://www.mywebsite.com/assets/img/icons/svg/icons_secure.svg');
}
.icon.checkout {
background-image: url('http://www.mywebsite.com/assets/img/icons/svg/icons_checkout.svg');
}

一直收到$has-png$has-svg 是 undefined variable 的错误。

感谢您的帮助。

最佳答案

您应该首先尝试使用 map-get 获取 map 中的值,因为返回值(在我下面的解决方案中为 $file)是一个列表。这是一个带有“变量”的简化版本,在 -> 之后意味着它返回该类型,在 : 之后是您需要在此处输入的类型,向您展示什么您的变量将代表以及您必须如何使用它们:

/* @each $type->string, $file->map in $icons-map:map */
@each $type, $file in $icons-map {
/* if get-value-with-keyname-in-map($file:map, has-png:string)->boolean; is true */
@if map-get($file, has-png) == true {
.icon-#{$type}:after {
/* print get-value-with-keyname-in-map($file:map, filename:string)->string; */
background-image: url('#{$image-path}/png/#{map-get($file, filename)}.png');
}
}
}

请记住,您正在寻找 keys 而不是变量,唯一存在的变量是您定义的变量,这意味着 has-pnghas-svg 不是变量,它们是映射中的键(在这种情况下,映射是 $file,键 $type 在你的映射 中的值$icons-map).此外,由于您将它们定义为 booleans 您实际上不能使用 == "true" 来比较它,因为这意味着一个字符串,所以只需检查它们是否 ==是的

我从中得到的输出是:

.icon-tick:after {
background-image: url("http://www.mywebsite.com/assets/img/icons/png/icons_tick.png");
}
.icon-secure:after {
background-image: url("http://www.mywebsite.com/assets/img/icons/png/icons_secure.png");
}

这似乎是你想要的。

关于css - 如何在嵌套 sass 映射 (SCSS) 中执行 'if' 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28851656/

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