node.js中的http.response.addTrailers方法使用说明
投稿:junjie
这篇文章主要介绍了node.js中的http.response.addTrailers方法使用说明,本文介绍了http.response.addTrailers的方法说明、语法、接收参数、使用实例和实现源码,需要的朋友可以参考下
方法说明:
该棒法用来将HTTP trailing响应头添加到消息尾部。
语法:
复制代码 代码如下:
response.addTrailers(headers)
接收参数:
headers 响应头信息
例子:
复制代码 代码如下:
response.writeHead(200, { 'Content-Type': 'text/plain', 'Trailer': 'Content-MD5' });
response.write(fileData);
response.addTrailers({'Content-MD5': "7895bf4b8828b55ceaf47747b4bca667"});
response.end();
您可能感兴趣的文章:
- node.js中的http.get方法使用说明
- node.js中的http.createServer方法使用说明
- node.js中的http.response.writeHead方法使用说明
- node.js中的http.request方法使用说明
- node.js+Ajax实现获取HTTP服务器返回数据
- 从零开始学习Node.js系列教程之SQLite3和MongoDB用法分析
- 从零开始学习Node.js系列教程六:EventEmitter发送和接收事件的方法示例
- 从零开始学习Node.js系列教程五:服务器监听方法示例
- 从零开始学习Node.js系列教程四:多页面实现数学运算的client端和server端示例
- 从零开始学习Node.js系列教程四:多页面实现的数学运算示例
- 从零开始学习Node.js系列教程三:图片上传和显示方法示例
- 从零开始学习Node.js系列教程二:文本提交与显示方法
- 从零开始学习Node.js系列教程一:http get和post用法分析
- 从零开始学习Node.js系列教程之设置HTTP头的方法示例