1

JS スタックで nunjucks を使用しようとしています。

テンプレートを gulp-nunjucks でプリコンパイルしました。

gulp.task("build:tpl", function() {
  var options = {
    // ... empty for the moment
  };

  return gulp.src("src/text/*.txt", { base : path.join(__dirname, "src/text") } )
    .pipe(nunjucks())
    .pipe(concat("ui-template.js"))
    .pipe(gulp.dest("js/tpl"));
});

次に、使用する JS が必要な ui-template を含めます。

/**
 * setup UI
 *
 * "ui-colorchess.txt" is the main template
 * it contains (nested) subtemplates (include "ui-history.txt" and so forth)
 */
UI.prototype.setup = function() {
  var that = this;

  // first we grab precompiled templates
  require(["js/tpl/ui-template.js"], function() {
    // ... into requirejs variables (or not)

    // some context vars, just to provide an ID in HTML
    var ctx = {
      id : "colorchess-1",
      otherStuff : 2
    };

    var env = new nunjucks.Environment(
      new nunjucks.WebLoader("/js/tpl")
    );

    // it sucks here !
    var c = env.render("ui-colorchess.txt", ctx);

    console.log(c);

     // try to assign result to a container
    that.bounds.innerHTML = c;

    // one more time... when it will work !
    // var board = new Board("colorchess-board-" + that.key);
    // board.firstDraw();
  });

そして、コンソールにエラーが表示されます:

Uncaught Template render error: (ui-colorchess.txt)
  TypeError: Cannot read property 'resolve' of undefined 

誰が何が悪いのか特定できますか?

4

2 に答える 2

1

sindresorhus/gulp-nunjucks#1で説明されている同じ問題。

ファイルを連結したい場合は、nameオプションを設定する必要があります:

var options = {
  name: function (file) {
    return file.relative;
  }
};
于 2015-04-16T16:57:00.393 に答える