當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。