DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> node.js中的http.response.addTrailers方法教程使用說明詳解
node.js中的http.response.addTrailers方法教程使用說明詳解
編輯:關於JavaScript     

方法說明:

該棒法用來將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();

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved