Node.js
Czytaj linię
Szukaj…
Składnia
- const readline = wymagany („readline”)
- readline.close ()
- readline.pause ()
- readline.prompt ([preserveCursor])
- readline.question (zapytanie, oddzwanianie)
- readline.resume ()
- readline.setPrompt (monit)
- readline.write (data [, klucz])
- readline.clearLine (stream, reż)
- readline.clearScreenDown (stream)
- readline.createInterface (opcje)
- readline.cursorTo (stream, x, y)
- readline.emitKeypressEvents (stream [, interfejs])
- readline.moveCursor (stream, dx, dy)
Odczytywanie plików wiersz po wierszu
const fs = require('fs');
const readline = require('readline');
const rl = readline.createInterface({
input: fs.createReadStream('text.txt')
});
// Each new line emits an event - every time the stream receives \r, \n, or \r\n
rl.on('line', (line) => {
console.log(line);
});
rl.on('close', () => {
console.log('Done reading file');
});
Monitowanie danych wejściowych użytkownika za pomocą interfejsu CLI
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question('What is your name?', (name) => {
console.log(`Hello ${name}!`);
rl.close();
});
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow