关于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');