1

我正在使用 NPM 'inquirer' 包来向用户提出各种问题。其中之一是“选择”选择。有没有办法根据“选择”选择提出后续问题?

这是我的代码:

    const { prompt } = require('inquirer');
require('colors');

const questions = [
    {
        type: 'input',
        name: 'appName',
        message: 'Enter application name:'
    },
    {
        type: 'input',
        name: 'appDescription',
        message: 'Enter app description:'
    },
    {
        type: 'input',
        name: 'appAuthor',
        message: 'Enter app author:'
    },
    {
        type: 'checkbox',
        name: 'plugins',
        message: 'Select plugins to install:',
        choices: [
            {
                name: 'Cassandra'
            }
        ]
    }
];

module.exports.performQuestions = async () => {
    console.log('\nWelcome to Chef!\n'.underline.italic.cyan);

const answers = await prompt(questions);
if (!answers.appName) {
    console.error('\nPlease provide app name!\n'.red);
    process.exit(1);
}

    answers.appType = 'service';

    return answers;
};

如果用户选择“Cassandra”,我想在这里提出更多问题,这可能吗?

谢谢。

4

0 回答 0