我想从列表项中创建一个变量,但我找不到在其前面粘贴美元符号的方法。下面是我尝试过的方法。
$hoi: yellow;
$test: hoi;
helpMe{
background: $#{$test}; //error
background: $$test; //error
background: $nth($test, 1); //error
background: unquote("$")#{$test}; //output: $hoi
background: unquote("$")nth($test, 1); //output: $ hoi
};
有什么方法可以在变量之前粘贴美元符号并仍然被识别为变量?