Gruntjs 未定义grunt,未找到默认值

Gruntjs 未定义grunt,未找到默认值,gruntjs,grunt-build-control,Gruntjs,Grunt Build Control,我想为html模板项目创建yoeman生成器 当我尝试启动grunt时,我发现此错误任务“未找到默认值” 未定义grunt生成give grunt $> grunt Loading "Gruntfile.js" tasks...ERROR >> ReferenceError: grunt is not defined Warning: Task "default" not found. Use --force to continue. Aborted due to warnin

我想为html模板项目创建yoeman生成器 当我尝试启动grunt时,我发现此错误任务“未找到默认值” 未定义grunt生成give grunt

$> grunt
Loading "Gruntfile.js" tasks...ERROR
>> ReferenceError: grunt is not defined
Warning: Task "default" not found. Use --force to continue.
Aborted due to warnings.
这是我的密码

var fs = require('fs');
var path = require('path');
var showdown = require('showdown');
var EJS = require('ejs');
var TemplateRender = function(file, destination, source, template) {
this.file = file;
this.destination = destination;
this.source = source;
this.template = template;
this.grunt = grunt;
};

TemplateRender.prototype = {
render: function() {
var file    = this._read();
var html    = this._convert(file);
var content = this._template(html);
              this._write(content);
},
_read: function() {
var filepath = path.join(this.source,this.file);
grunt.file.read(filepath);
},
_convert: function(file) {
return new showdown.convertor().makeHtml(file);
},
_template: function(html) {
    var template = this.grunt.file.read(this.template);
    return EJS.render(template,{content:html});
 },
_write: function() {
this.grunt.file.write(
  path.join(this.destination, this.file),
  page
  );
  }

  };
'use strict';
module.exports = function(grunt) {

  grunt.registerTask('build', function() {
    var template = "app/index.ejs",
    destination = path.join(process.cwd(),"dist"),
    source = path.join(process.cwd(),"posts"),
    files = fs.readdirSync(source);

  files.forEach(function(file) {
    new TemplateRender(file, destination, source, template, grunt).render();
    read();
    convert();
    template();
    write();


  });

  });

  };

我需要知道如何检测grunt和yeoman中的错误

在代码的顶部,在TemplateRender函数中,有这样一行:this.grunt=grunt;但实际上你没有这个名字的论点。试试这个:

// ... (everything the same above here)

// *** Notice the new argument to this constructor function
var TemplateRender = function(file, destination, source, template, grunt) {
  this.file = file;
  this.destination = destination;
  this.source = source;
  this.template = template;
  this.grunt = grunt;
};

TemplateRender.prototype = {
  // ...
  _read: function() {
    var filepath = path.join(this.source,this.file);

    // *** probably needs to be `this.grunt` ?
    this.grunt.file.read(filepath);
  },

  // ...
};

module.exports = function(grunt) {
  grunt.registerTask('build', function() {
    // ... (mostly the same)

    files.forEach(function(file) {
      new TemplateRender(file, destination, source, template, grunt).render();

      // *** where are these defined? Should they be: this._read(), etc?
      this._read();
      this._convert();
      this._template();
      this._write();
    });

  });

};

感谢jakerella,这部分解决了问题,现在错误显示undefined不是一个函数