我正在尝试通过第一个属性获取嵌套 SASS 列表中项目的索引。但我能得到结果的唯一方法是在项目中包含这两个属性。
使用原生 SASS 是否可行,还是需要 mixin/function?以及我将如何做到这一点的任何意见?
我得到的代码:
$icons : (
'arrow--down--full' '\e806', /* '' */
'cog' '\e805', /* '' */
'info' '\e807', /* '' */
'arrow--down' '\e800', /* '' */
'arrow--left' '\e801', /* '' */
'arrow--right' '\e802', /* '' */
'arrow--up' '\e803', /* '' */
'close' '\e804', /* '' */
'search' '\e804', /* '' */
'spin' '\e809' /* '' */
);
我的查找
//Working
index($icons, 'search' '\e804');
//Not working, but what i want to achieve
index($icons, 'search');