博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Buffer.from(str[, encoding])
阅读量:5157 次
发布时间:2019-06-13

本文共 557 字,大约阅读时间需要 1 分钟。

Buffer.from(str[, encoding])

  • str {String} 需要编码的字符串
  • encoding {String} 编码时用到,默认:'utf8'
创建一个新的 Buffer 包含给定的 JavaScript 字符串 str。如果提供 encoding 参数,将标识字符串的字符编码。如果没有提供 encoding 参数,默认为 'utf8'。
const buf1 = Buffer.from('this is a tést');console.log(buf1.toString());// prints: this is a téstconsole.log(buf1.toString('ascii'));// prints: this is a tC)stconst buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');console.log(buf2.toString());// prints: this is a tést

如果 str 不是一个有效的 String 则抛出一个 TypeError 错误。

转载于:https://www.cnblogs.com/lalalagq/p/9908495.html

你可能感兴趣的文章
【编程练习】复习一下树的遍历
查看>>
邮件和短信验证码
查看>>
(转)Android studio 使用心得(五)—代码混淆和破解apk
查看>>
构建之法阅读笔记03
查看>>
ES5_03_Object扩展
查看>>
Apache-ab 接口性能测试
查看>>
EF 4.1 Code First Walkthrough
查看>>
常用MySQL语法
查看>>
007API网关服务Zuul
查看>>
bzoj 2600: [Ioi2011]ricehub
查看>>
iOS __strong __weak @Strongify @Weakify
查看>>
thinkphp引入PHPExcel类---thinkPHP类库扩展-----引入没有采用命名空间的类库
查看>>
创建数据库,表
查看>>
Luogu 1970 NOIP2013 花匠 (贪心)
查看>>
javascript笔记---貌似大叔
查看>>
去重查询表mysql 中数据
查看>>
工厂模式
查看>>
AngularJS学习之旅—AngularJS 模块(十五)
查看>>
计算机网络基础知识
查看>>
大数据算法:对5亿数据进行排序
查看>>