Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直试图在 Stylus 中将函数作为参数传递,但它从不渲染任何东西。我究竟做错了什么?我不明白这...
foo(fn) fn(x) fn(x) background x .myclass foo(black)
我希望这会为 .myclass 呈现黑色背景。
Stylus 的网站目前已关闭,因此这里是相关文档的缓存链接
糟糕,我把它搞砸了(现在还早)。对于其他好奇的人,您需要像这样传递变量:
foo(fn, x) fn(x) bg(bg_color) background bg_color .myclass foo(bg, black)