欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

如何解决node res.write 乱码问题

程序员文章站 2022-03-09 17:05:02
...

node res.write乱码的解决办法:1、设置头部信息为“Content-Type':'text/plain; charset=utf-8”;2、设置代码为“res.write(JSON.stringify({msg:data})”。

如何解决node res.write 乱码问题

本文操作环境:Windows7系统,nodejs10.16.2版,Dell G3电脑。

如何解决node res.write 乱码问题?

关于nodejs res.write返回中文乱码问题

需要添加头部信息:

'Content-Type': 'text/plain; charset=utf-8'

如下:

 res.writeHead(200, {'Content-Type': 'text/plain; charset=utf-8'});
 res.write(JSON.stringify({msg:data}),'utf8');

推荐学习:《node.js视频教程

以上就是如何解决node res.write 乱码问题的详细内容,更多请关注其它相关文章!

相关标签: node