当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Buffer.from(array)用法及代码示例


静态方法:Buffer.from(array)

添加于:v5.10.0

参数

使用范围为 0 - 255array 字节分配新的 Buffer。该范围之外的数组条目将被截断以适应它。

import { Buffer } from 'node:buffer';

// Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'.
const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);const { Buffer } = require('node:buffer');

// Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'.
const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);

如果 array 不是 Array 或适用于 Buffer.from() 变体的其他类型,则会抛出 TypeError

Buffer.from(array) Buffer.from(string) 也可以像 Buffer.allocUnsafe() 一样使用内部 Buffer 池。

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 Buffer.from(array)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。