노드의 버퍼 길이를 어떻게 가져옵니까?js?

2197 단어 node
Originally posted here!
노드Buffer의 실례 길이를 얻습니다.js, length 실례에서 Buffer 속성을 사용할 수 있습니다.
문자열 Hello World! 에서 온 버퍼가 있다면
// Buffer from string Hello World!
const buff = Buffer.from("Hello World!", "utf-8");
이제 length 대상의 속성buff을 사용하여 길이를 얻습니다.
// Buffer from string Hello World!
const buff = Buffer.from("Hello World!", "utf-8");

// get the length of the Buffer
const length = buff.length;

console.log(length); // 12
이 예제 live inrepl.it을 참조하십시오.

만약 네가 이것이 매우 유용하다고 생각한다면 마음대로 공유해라😃.

좋은 웹페이지 즐겨찾기