作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个自定义的 yeoman 生成器,我需要根据用户响应创建一个数组:我如何重复一个问题并将答案推送到数组?
例如:添加一个值?是/否如是值(value)=?
添加一个值?是/否...
目前,我有这段代码:
MyGenerator.prototype.askFor = function askFor() {
var cb = this.async();
console.log(this.yeoman);
var prompts = [
{
type: 'confirm',
name: 'addvalue',
message: 'Add value ?',
default: true
},
{
name: 'myarray',
message: 'Value =',
}
];
this.prompt(prompts, function (props) {
this.addvalue = props.addvalue;
cb();
}.bind(this));
};
最佳答案
只需使用递归函数。
示例(由于 this
上下文而无法正常工作):
function askSomething() {
this.prompt({ /* some prompts */ }, function (answers) {
// call the function back if needed
askSomething();
});
}
关于generator - 自耕农发电机 : repeat a prompt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20362768/
我是一名优秀的程序员,十分优秀!