解决 Node 服务器返回结果的中文出现乱码 尹宇星Kim 2022-08-25 63 阅读1分钟 通过设置 response 的 Content-type 来解决 import type { IncomingMessage, ServerResponse } from 'http' (req: IncomingMessage, res: ServerResponse) => { // 省略 ... res.setHeader('Content-type', 'application/json;charset=utf-8') // 省略 ... }