writeStream.clearLine()是tty模块中WriteStream类的内置应用程序编程接口,用于清除此写入流对象的当前行。
用法:
writeStream.clearLine(dir[, callback])
参数:此方法将以下参数作为参数:
- dir:整数值,定义线的选择。
- callback:操作完成后调用。
返回值:如果写入对象行是清除的,则此方法返回布尔值true,否则返回false。
范例1: 文件名:index.js
// Node.js program to demonstrate the
// writeStream.clearLine() method
// Importing dgram module
var dgram = require('dgram');
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
// Handling the message event
server.on("message", function (msg) {
// Creating and initializing a
// WriteStream object
let WriteStream = process.stdout;
// Clearing the line
// by using clearLine() API
const col = WriteStream.clearLine();
// Displaying the result
process.stdout.write(msg + col);
// Exiting process
process.exit();
})// Binding server with port
.bind(1234, () => {
});
// Client sending message to server
client.send("The line is clear:- ",
0, 26, 1234, "localhost");
输出:
The line is clear:- true
范例2: 文件名:index.js
// Node.js program to demonstrate the
// writeStream.clearLine() method
// Creating and initializing a
// WriteStream object
let WriteStream = process.stdout;
// Clearing the line
// by using clearLine() API
const col = WriteStream.clearLine();
// Displaying the result
console.log("The line is clear:- " + col);
使用以下命令运行index.js文件:
node index.js
输出:
The line is clear:- true
参考:https://nodejs.org/dist/latest-v12.x/docs/api/tty.html#tty_writestream_clearline_dir_callback
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js GM channel()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM chop()用法及代码示例
- Node.js GM implode()用法及代码示例
- Node.js GM edge()用法及代码示例
- Node.js GM crop()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM gaussian()用法及代码示例
- Node.js GM enhance()用法及代码示例
- Node.js GM flop()用法及代码示例
- Node.js GM flip()用法及代码示例
- Node.js GM despeckle()用法及代码示例
- Node.js GM bordercolor()用法及代码示例
- Node.js GM border()用法及代码示例
- Node.js GM equalize()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js writeStream.clearLine() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。