我正在使用inquirer.js
为 CLI 脚本创建一个简单的提示。我试图在 switch 语句中设置一个变量值,然后在 axios 实例配置中使用这个变量。
我面临着变量总是未定义的问题,我该如何正确设置它?
let url;
switch( answers.language ){
case 'Italian':
url = 'https://it.wikipedia.org/w/api.php';
break;
case 'English':
url = 'https://en.wikipedia.org/w/api.php';
break;
case 'Deutch':
url = 'https://de.wikipedia.org/w/api.php';
break;
}
axios({
url: url,
method: 'GET',
params: {
action: 'query',
list: 'search',
srsearch: answers.search,
format: 'json'
}
}).then( (response) => {
console.log(response);
console.log(response.data);
});