文件名称:response-distort:挂钩到 http.ServerResponse 实例以修改其响应正文
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-24 05:17:25
JavaScript
React扭曲 挂钩到http.ServerResponse实例以修改其响应正文。 例如,将 JavaScript 注入到 HTML 响应中很有用。 用法 扭曲(res,地图(身体,完成)) 接受res ,一个的实例,和map ,一个在响应准备好被修改时调用的回调。 map的第一个参数是原始响应body 。 当您准备好这样做时done(null, modifiedBody)您应该使用更新后的响应正文调用done(null, modifiedBody) 。 const distort = require ( 'response-distort' ) const http = require ( 'http' ) http . createServer ( function ( req , res ) { distort ( res , function ( body ,
【文件预览】:
response-distort-master
----.gitignore(39B)
----package.json(833B)
----LICENSE.md(1KB)
----index.js(455B)
----test.js(507B)
----README.md(1KB)
----.npmignore(52B)