gpt4 book ai didi

sass - "IF value IN array"怎么写?

转载 作者:行者123 更新时间:2023-12-04 17:37:00 24 4
gpt4 key购买 nike

嗨,我是 SASS 的新手,想知道如何写“if value in array”之类的东西

例如:

$animal : dog;
$landAnimal : (dog, cat, lion);
$seaAnimal : (fish, squid, whale);

//keyword IN doesn't work
@if $animal in $landAnimal{
//do something
}@else if $animal in $seaAnimal{
//do something
}

我尝试搜索文档和谷歌搜索,但我没有找到任何答案。这里有人有解决方案吗?我相信这很简单。

最佳答案

您正在寻找 index功能:http://sass-lang.com/docs/yardoc/Sass/Script/Functions.html#index-instance_method

@if index($landAnimal, $animal) {
//do something
} @else if index($seaAnimal, $animal) {
//do something
}

关于sass - "IF value IN array"怎么写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15388814/

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