解决 Node 服务器返回结果的中文出现乱码

通过设置 responseContent-type 来解决

import type { IncomingMessage, ServerResponse } from 'http'

(req: IncomingMessage, res: ServerResponse) => {
  // 省略 ...
  res.setHeader('Content-type', 'application/json;charset=utf-8')
  // 省略 ...
}
上一篇:设计模式1


下一篇:Java中switch是如何支持String的