0

所以我正在使用一些非常复杂的 Sass 从“&”中删除所有其他选择器

.test, .test-2, .test-3, .test-4 {
    $selectors: (&);
    @if length(&) != 1 {
        $selectors: (); // Works only with Ruby Sass
        $i: 1;
        @each $item in (&) {
            $i: $i + 1;
            @if $i % 2 == 0 {
                $i: 0;
            }@else{
                $selectors: append($selectors, $item);
            }
        }
      $selectors: to-string($selectors, ", ");
        content: "#{$selectors}";
    }
}

我对内容属性的预期结果是:

content: ".test-2, .test-4";

当使用 Ruby Sass 时,这正是我得到的。使用 Libsass 时,出现此错误:

argument `$list` of `nth($list, $n)` must not be empty 

此错误是指我正在使用的自定义“to-string”函数中的代码:

@function to-string($list, $glue: '', $is-nested: false, $recursive: false) {
    $result: null;
    @for $i from 1 through length($list) {
        $e: nth($list, $i);
        @if type-of($e) == list and $recursive {
            $result: $result#{to-string($e, $glue, true)};
        }  
        @else {
            $result: if(
                $i != length($list) or $is-nested, 
                $result#{$e}#{$glue}, $result#{$e}
            );
        }
    }
    @return $result;
}

更具体地说,这一行:

$e: nth($list, $i);

看来我传递给to-string函数的值(这是$selectors变量)是空的,而它不应该是空的。我最初将其定义为空 ( $selectors: ();),但随后我将所有其他项目从&. 所以我不确定为什么此时它是空的。

这是一个演示该问题的 Sassmesiter:http ://sassmeister.com/gist/332dae9a27983edd9d15

把上面demo中的编译器改成Libsass就可以看到报错了。

我不确定这是我的代码还是 Libsass 的问题。我不想在 Libsass 上打开一个问题,除非我确定这是一个 Libsass 问题。

谢谢

4

1 回答 1

0

好的,我明白了这一点。相当肯定这是一个 Libsass 问题。

看起来你不能&直接循环遍历每个项目,但如果我存储&在一个变量中,它就会继续工作。

所以为了澄清,改变这个:

@each $item in & {
    ...
}

对此:

$this: &;
@each $item in $this {
    ...
}

解决问题。

于 2015-09-04T11:51:31.153 回答