如何在LESS编译器中抛出错误

时间:2015-06-16 10:28:36

标签: css compiler-errors less throw less-mixins

问题

有没有办法(以编程方式)在LESS编译器中抛出错误?

为什么?

我今天一直在摆弄mixin警卫,因为我想根据元素大小和元素数量生成我的CSS边距。 我认为直接在编译时抛出错误会很酷,因为元素不适合包装器。

信息:我正在使用lessc编译器将我的LESS代码编译为CSS。我没有使用任何Javascript库在执行时编译它。

少来源

// Variables
@wrapper-small:  830px;
@wrapper-big:   1200px;

.col-fixed(@size, @count, @wrapper)  when ((@size*@count) <= @wrapper)
{
    width: unit(@size, px);
    margin-right: unit( (@wrapper - @count * @size) / (@count - 1), px);    
}

.test_col_fixed {
    // will fail the mixin guard and output no generated CSS        
    .col-fixed(340, 3, @wrapper-small);

    // would work if not in comment
    // .col-fixed(340, 3, @wrapper-big);
}

生成的CSS(小包装器)

没有输出,因为由于不匹配的mixin guard when ((@size*@count) <= @wrapper) // 3*340 <= 830 is false而不会生成代码。

生成的CSS(带有工作解决方案,大包装器)

.test_col_fixed {
    width: 340px;
    margin-right: 90px;
}

1 个答案:

答案 0 :(得分:1)

建议但严格不推荐solution by Harry

.col-fixed(@size, @count, @wrapper) {
    & when ((@size*@count) <= @wrapper) {
        width: unit(@size, px);
        margin-right: unit( (@wrapper - @count * @size) / (@count - 1), px);  
    }
    & when ((@size*@count) > @wrapper) {
        /* there is no such variable and hence when the input value is not valid,
        compiler will complain that variable is undefined */
        output: @bwahahaha;
    }
}