writable.end([chunk[, encoding]][, callback])
历史
版本 | 变化 |
---|---|
v15.0.0 |
|
v14.0.0 | 如果发出'finish' 或'error',则调用 |
v10.0.0 | 此方法现在返回对 |
v8.0.0 |
|
v0.9.4 | 添加于:v0.9.4 |
参数
chunk
<string> | <Buffer> | <Uint8Array> | <any> 可选数据写入。对于不在对象模式下运行的流,chunk
必须是字符串,Buffer
或Uint8Array
。对于对象模式流,chunk
可以是除null
之外的任何 JavaScript 值。encoding
<string>chunk
是字符串时的编码callback
<Function> 流结束时的回调。- 返回: <this>
调用 writable.end()
方法表示不再有数据写入
。可选的Writable
chunk
和encoding
参数允许在关闭流之前立即写入最后一个额外的数据块。
在调用
之后调用stream.end()
方法将引发错误。stream.write()
// Write 'hello, ' and then end with 'world!'.
const fs = require('node:fs');
const file = fs.createWriteStream('example.txt');
file.write('hello, ');
file.end('world!');
// Writing more now is not allowed!
相关用法
- Node.js stream.Writable.uncork()用法及代码示例
- Node.js stream.Writable.destroyed用法及代码示例
- Node.js stream.Writable.write(chunk[, encoding][, callback])用法及代码示例
- Node.js stream.Writable.destroy([error])用法及代码示例
- Node.js stream.Readable.take(limit[, options])用法及代码示例
- Node.js stream.Readable.pipe(destination[, options])用法及代码示例
- Node.js stream.Readable.setEncoding(encoding)用法及代码示例
- Node.js stream.Readable.some(fn[, options])用法及代码示例
- Node.js stream.Readable.map(fn[, options])用法及代码示例
- Node.js stream.Readable.toArray([options])用法及代码示例
- Node.js stream.Readable.isPaused()用法及代码示例
- Node.js stream.Readable.forEach(fn[, options])用法及代码示例
- Node.js stream.Readable.every(fn[, options])用法及代码示例
- Node.js stream.finished()用法及代码示例
- Node.js stream.Readable.from()用法及代码示例
- Node.js stream.Readable.read([size])用法及代码示例
- Node.js stream.Readable.flatMap(fn[, options])用法及代码示例
- Node.js stream.finished(stream[, options], callback)用法及代码示例
- Node.js stream.Readable.unshift(chunk[, encoding])用法及代码示例
- Node.js stream.Readable.filter(fn[, options])用法及代码示例
- Node.js stream.Readable.asIndexedPairs([options])用法及代码示例
- Node.js stream.Readable.drop(limit[, options])用法及代码示例
- Node.js stream.Readable.resume()用法及代码示例
- Node.js stream.Readable.reduce(fn[, initial[, options]])用法及代码示例
- Node.js stream.addAbortSignal(signal, stream)用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 stream.Writable.end([chunk[, encoding]][, callback])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。