码迷,mamicode.com
首页 > 其他好文 > 详细

ArrayBuffer转换成字符串中文乱码问题

时间:2020-05-21 14:41:52      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:turn   代码   字符   script   pre   中文乱码问题   这一   encode   apply   

  buf2str(buffer) {
      
      let  encodedString = String.fromCodePoint.apply(null, new Uint8Array(buffer));
      let decodedString = decodeURIComponent(escape(encodedString));//没有这一步中文会乱码
      console.log(decodedString);
      return decodedString
    },

  时间紧迫,请看代码。亲测有效

ArrayBuffer转换成字符串中文乱码问题

标签:turn   代码   字符   script   pre   中文乱码问题   这一   encode   apply   

原文地址:https://www.cnblogs.com/justinwxt/p/12930582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!