• Node.js Video Tutorials

Node.js - Buffer.writeUInt32LE() 方法



NodeJS 的Buffer.writeUInt32LE()方法用于将给定偏移量处的值(一个无符号的 32 位整数)以小端字节序的形式写入缓冲区。如果该值不是一个 32 位无符号整数,则返回 undefined。

语法

以下是Node.JS Buffer.writeUInt32LE() 方法的语法:

buf.writeUInt32LE(value[, offset])

参数

此方法接受两个参数,如下所述。

  • value − (必填) 要写入缓冲区的无符号 32 位数字。

  • offset − 指示开始写入位置的偏移量。偏移量必须大于或等于 0,并且小于或等于 buffer.length-4。默认值为 0。

返回值

NodeJS 的buffer.writeUInt32LE()方法写入给定值并返回偏移量加上写入的字节数。

示例

为了创建一个缓冲区,我们将使用 Buffer.alloc() 方法:

const buffer = Buffer.alloc(10);
buffer.writeUInt32LE(1000);
console.log(buffer);

输出

执行时,从第 0 个位置开始的值将被写入创建的缓冲区。上面创建的缓冲区长度为 10。因此,我们只能使用偏移量 0 到 6 的值。如果任何值 >6,则会给出错误ERR_OUT_OF_RANGE

<Buffer e8 03 00 00 00 00 00 00 00 00>

示例

在此示例中,我们将使用缓冲区长度为 5,并且偏移量大于 buffer.length −4。

const buffer = Buffer.alloc(5);
buffer.writeUInt32LE(1000, 2);
console.log(buffer);

输出

internal/buffer.js:58
   throw new ERR_OUT_OF_RANGE(type || 'offset',
   ^
   
RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range. It must be >= 0 and <= 1. Received 2
   at boundsError (internal/buffer.js:58:9)
   at checkBounds (internal/buffer.js:39:5)
   at checkInt (internal/buffer.js:46:3)
   at writeU_Int32LE (internal/buffer.js:526:3)
   at Buffer.writeUInt32LE (internal/buffer.js:539:10)
   at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:2:8)
   at Module._compile (internal/modules/cjs/loader.js:816:30)
   at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
   at Module.load (internal/modules/cjs/loader.js:685:32)
   at Function.Module._load (internal/modules/cjs/loader.js:620:12)

示例

在此示例中,我们将创建一个缓冲区,并从一个在范围内的偏移量开始写入。

const buffer = Buffer.alloc(10);
buffer.writeUInt32LE(123, 4);
console.log(buffer);

输出

偏移量必须在 0 到 6 之间。上述代码执行后的输出如下所示:

<Buffer 00 00 00 00 7b 00 00 00 00 00>
nodejs_buffer_module.htm
广告