不能使用Stylus的Hashes

时间:2015-02-09 16:53:56

标签: stylus

我读过http://learnboost.github.io/stylus/docs/hashes.html,但没有一个例子不适合我。 例如

foo = {
  bar: {
    baz: {
      raz: 10px
    }
  }
}


qux = "raz"
padding
    padding foo["bar"].baz[qux]

编译错误

expected "indent", got "eos"

我做错了什么?

1 个答案:

答案 0 :(得分:7)

在调用哈希值时应该使用冒号,否则Stylus无法区分选择器和哈希值。所以,

foo = {
  bar: {
    baz: {
      raz: 10px
    }
  }
}


qux = "raz"
padding
    padding: foo["bar"].baz[qux]

应该可以正常工作。