filename选项在stylus.render函数中做了什么?

时间:2013-07-03 12:03:20

标签: node.js stylus

我尝试根据下面给出的示例代码(来自官方文档)更改文件名参数,但它对我的输出没有任何影响。

我希望文件名指定输入或输出的路径。但是str是输入,需要定义,并且不会根据filename参数生成输出文件。

那么文件名选项在stylus.render函数中做了什么?

示例代码from

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

css.render(str, { filename: 'basic.styl' }, function(err, css){
    if (err) throw err;
    console.log(css);
});

示例代码from

var stylus = require('stylus');

stylus.render(str, { filename: 'nesting.css' }, function(err, css){
  if (err) throw err;
  console.log(css);
});

1 个答案:

答案 0 :(得分:2)

filename参数用于错误报告,而不是输入或输出文件名。

来自http://learnboost.github.io/stylus/docs/js.html的文档:

  

只需要模块,并使用给定的Stylus代码字符串和(可选)选项对象调用render()。

     

使用Stylus的框架应该传递filename选项以提供更好的错误报告。