我想做的是仅在提示中将字段设置为true时问一个问题。

this.prompt(prompts, function (props) {
  this.isShared = props.isShared;
  this.componentName = props.componentName;
  // To access props later use this.props.someAnswer;
  if (this.isShared)
  {
    prompts = [{
      name: 'inPack',
      message: 'Yo dawg, in which pack is your component ? (you can just press enter if it\'s not in a pack)',
      default: ''
    }]
    this.prompt(prompts, function (props) {
      this.inPack = props.inPack;
    }.bind(this));
    done();
  }
  else
    done();
}.bind(this));


问题是,“写”函数在if(无论if是否起作用)之前被调用,所以我想知道如何正确地执行它,因为我想这不是好方法

最佳答案

好吧,Yeoman只是JavaScript,因此,如果您正确处理异步顺序,则任何if / else语句都可以使用。

话虽如此,如果您依赖问题的when属性,则将消除所有异步开销。见https://github.com/SBoudrias/Inquirer.js#question

08-04 16:35