gpt4 book ai didi

stylus - Stylus 渲染功能是同步的吗?

转载 作者:行者123 更新时间:2023-12-02 01:01:32 25 4
gpt4 key购买 nike

我正在使用它的 JavaScript API 编译我的 Stylus .styl 样式表:http://learnboost.github.io/stylus/docs/js.html

  var stylus = require('../')
, str = require('fs').readFileSync(__dirname + '/test.styl', 'utf8');

stylus(str)
.set('filename', __dirname + '/test.styl')
.import('mixins/vendor')
.render(function(err, css){
if (err) throw err;
console.log(css);
});

它没有提到它使用的回调是同步的还是异步的。尽管根据我的经验,它似乎 是同步的,但我不确定。是吗?

最佳答案

render 函数是伪异步的,因为它接受回调,但函数内部的所有调用实际上都是同步的。此函数还有一个完全同步的版本(如果您不提供回调):

var styl = stylus(str)
.set('filename', __dirname + '/test.styl')
.import('mixins/vendor');

console.log(styl.render()); // outputs compiled css

关于stylus - Stylus 渲染功能是同步的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28049113/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com