2024年09月19日 建站教程
node语法utf8出现中文乱码怎么解决,下面web建站小编给大家详细介绍一下具有实现方法!
看一下代码是否设置了utf-8
'use strict'; const http = require("http"); let num = 0; const server = http.createServer((req, res) => { res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'}); res.write(`我是第${num++}个拉来的!`); res.end(); }); server.listen(2080, error => { if (error) throw error; console.log("启动成功") });
node目前支持的字符编码
编码 | 描述 |
---|---|
ascii | 仅支持7位ASCII数据,如果设置去掉高位的话,这种编码是非常快的。 |
utf8 | 多字节编码的Unicode字符,许多网页和其他文档格式都使用UTF-8。 |
utf16le | 2或4个字节,小字节序编码的Unicode字符,支持代理对(U+10000至U+10FFFF)。 |
ucs2 | utf16le的别名。 |
base64 | Base64编码。 |
latin1 | 一种把Buffer编码成一字节编码的字符串的方式。 |
binary | latin1的别名。 |
hex | 将每个字节编码为两个十六进制字符。 |
本文链接:http://so.lmcjl.com/news/13401/