循环 json, gulp-nunjucks-render 渲染所有具有相同内容的文件

Looping over json, gulp-nunjucks-render rendering all files with same content

我正在尝试使用 gulp-nunjucks-render 渲染 30 多个 html 页面。我已经创建了一个 nunjucks 模板和两个 json 文件(用于页眉和页脚的通用模板部分以及一组 posts 数据)。 "posts" 函数循环内的逻辑很简单:我获取所有 post 使用的一般信息,添加正确的 post 信息并将数据发送到将其呈现为 html 文件。

我在我的 "html" 函数中使用 gulp-util 来注销用于渲染的数据,我发现数据是正确的(每个 post 都不同).此外,文件名每次都应该不同。问题是渲染的 html 文件内容是相同的——最新渲染数据的内容。

我的 gulp 文件的相关部分:

var gulp = require('gulp'), 
    watch = require('gulp-watch'),
    rename = require('gulp-rename'),
    replace = require('gulp-replace'),
    nunjucks = require('gulp-nunjucks-render'),
    data = require('gulp-data'),
    gutil = require('gulp-util');


  gulp.task('watch-projects', function(){ 
  watchDir({ 
      output: 'group/',
      njk: 'group/parts/**/*.html',
      html: 'group/parts/*.html'});
  });
  function watchDir(project) {
    gulp.watch(project.njk, function() {render(project, "en"); render(project, "et");}); 
  }
  function render(project, language) {
    var data = require('./group/parts/data/' + language + '.json'),
    news = require('./group/parts/data/news.' + language + '.json');
    posts('group/parts/news.njk', project.output + language + "/", data, news);

  }
  function posts(template, output, data, posts) { 
    for (var item in posts.posts) {
      data.posts = posts.posts[item];
      html(template, output, data, {basename: data.posts['filename'], extname: ".html"});
    }
  }
  function html(template, output, thedata, name) {
    if (thedata.posts) {
      gutil.log(thedata.posts['title']);
    }
    gulp.src(template)
    .pipe(data(thedata))
    .pipe(nunjucks({path: ['group/parts/']))
    .pipe(rename(name))
    .pipe(gulp.dest(output));
  }

我使用的 news.en.json 文件看起来像这样:

{  
  "posts" : [
    {
      "title" : "some title",
      "hero" : "../img/6.jpg",
      "text" : "some content", 
      "pic1" :  "../img/6.jpg",
      "pic2" : "../img/6.jpg",
      "pic3" : "../img/6.jpg",
      "filename" : "news1"
    },
    {
      "title" : "some title2",
      "hero" : "../img/7.jpg",
      "text" : "some content2", 
      "pic1" :  "../img/7.jpg",
      "pic2" : "../img/7.jpg",
      "pic3" : "../img/7.jpg",
      "filename" : "news2"
    }
  ]
}

我得到两个内容相同的文件(在本例中为 "some title2","../img/7.jpg","some content2"... 在这两个文件中) .

当我想在每个 html 中获取不同的内容时,我做错了什么? gulp 或 nunjucks 可能有问题吗?

我每次都在覆盖引用的变量。我必须对数据进行浅表复制,而不是更改引用对象本身。对于浅拷贝,复制的部分存储为参考,但其余部分单独存储。

function posts(template, output, data, posts) { 
  for (var item in posts.posts) {
    // line below did the trick, also had to change "data" in "html" function call to "current"
    var current = Object.assign({},data);
    current.posts = posts.posts[item];
    html(template, output, current, {basename: current.posts['filename'], extname: ".html"});
  }