无法使用Jade模板包含相对路径文件

时间:2015-01-20 05:53:21

标签: javascript node.js pug

当我尝试在同一文件夹中包含文件时,我收到以下错误:

the "filename" option is required to use "include" with "relative" paths 

有两个文件:

index.jade

list_of_items.jade

.content-container
  .row
    .col-lg-10.col-lg-offset-1.col-xs-12
      .row
        .col-xs-3
          include list_of_items
        .col-xs-9
          include content

我尝试使用基本路径,但后来收到以下错误:

the "basedir" option is required to use "include" with "absolute" paths

基本路径的代码如下:

.content-container
  .row
    .col-lg-10.col-lg-offset-1.col-xs-12
      .row
        .col-xs-3
          include /User/project/list_of_items
        .col-xs-9
          include content

我完全不知所措。我错过了哪个地方?感觉这应该是超级简单的东西。我错过了什么?

2 个答案:

答案 0 :(得分:9)

您正在使用jade.compile(),对吧?如错误消息所述,您没有传递filename选项。由于您只提供了一个字符串来编译为Jade,因此它不知道在哪里查找包含的文件。

脚本和jade文件位于同一文件夹中的示例。 index.jade文件包含使用include foo的另一个文件:

var jade = require('jade'),
    fs   = require('fs'),
    path = require('path');

var fn = jade.compile(fs.readFileSync('index.jade', 'utf-8'), {
  filename: path.join(__dirname, 'index.jade'),
  pretty:   true
});

console.log(fn());

或者使用“绝对路径”,在Jade中绝对参考给定的basedir,您将执行以下操作。 index.jade文件现在包含相同的文件,但使用绝对路径,即。 include /foo

var jade = require('jade'),
    fs   = require('fs');

var fn = jade.compile(fs.readFileSync('index.jade', 'utf-8'), {
  basedir: __dirname,
  pretty:  true
});

console.log(fn());

对于所有选项,请参阅API docs

答案 1 :(得分:0)

您可以使用区域设置中的函数渲染动态模板。此方法也支持过滤器。

玉文件

+render('contents/index.md', {filter:'marked'});

Gulp Pipe

.pipe(jade({
  locals: {
    render: function (filePath, options) {
      return jade.render(`include${options.filter ? (':' + options.filter) : ''} ${filePath}`, {
        filename: pathToJadeFileDir + '/something-not_important'
      });
    }
  }
}))