Ich habe ein bedingtes Array ARR und möchte darin Werte in einer Zeile schreiben
Ich versuche das zu tun
import * as readline from 'node:readline/promises'; import { stdin as input, stdout as output } from 'process'; const rl = readline.createInterface({input, output}) let arr =[] console.log('Enter Values: ') for (let i = 0; i < 5; i++) { arr[i] = await rl.question('')
Aber wenn ich das mache, erhalte ich eine zeilenweise Eingabe:
Enter Values: 1 A 2 B
Ich brauche:
Enter Values: 1 A 2 B
readline
用换行符分隔输入流,但您想用空格分隔它。下面的转换流可以实现这一点。请注意,它是与for wait (...) {}
而不是for (...) { wait }
一起使用的。