是否可以在编译时设置sass变量?我基本上想要这样做:
$color: red !default; div#head { background-color: $color; }
当我编译为css时,我想将$color设置为“blue”(最好是从命令行).有没有人能够这样做?
谢谢,
克里斯
解决方法
我在FAQ
http://sass-lang.com/docs/yardoc/file.FAQ.html上找到了这个
如果你只是想在每次编译时将一些变量传递给CSS,比如使用–watch,你可以使用Sass functions定义Ruby脚本来查询数据库.但代码将只编译一次,并静态提供.
但是,如果您需要在每个具有不同选项的请求中重新编译它,
you can use 07002 to render the code,using the 07003
to pass in data that 07004 from your Sass functions
似乎不建议这样做.可能出于性能原因.