再会,
请帮助实现fastify默认解析器。
我需要的是在每个请求上分配 JSON-body 解析器,而不管content-type
标头
目前,我已经用那个丑陋的解决方法做到了:
const {kContentTypeParser} = require("fastify/lib/symbols")
const asJson = fastify[kContentTypeParser].customParsers["application/json"]
fastify.addContentTypeParser("*", asJson);
先感谢您