0
var data = [{
id: 'A1',
name: 'Minstrels'
}, {
id: 'A2',
name: 'Bounty'
}, {
id: 3,
name: 'Crunchie'
}, {
id: 4,
name: 'bar'
}];
var rl = require('readline')
var prompts = rl.createInterface(process.stdin, process.stdout);
prompts.question('Which Product do you want to purchase? ',
function(Answer1) {
//missing code goes here in order to return Minstrels if the user
//types 'A1' etc..
}
)
私のコードで助けが必要です。ユーザーの入力を有効にして配列を作成しましたが、私のコードが何もないと考えることはできません。JavaScript:配列を検索し、ユーザー入力後に値を返す
「食品:」はそこには存在しないはずでした –
https://stackoverflow.com/questions/20195958/how-to-find-object-in-array-by-property-in-javascriptを参照してください – Barmar