我正在寻找在 Nodejs 的 http 响应中添加重复的 HTTP 标头,例如:
HTTP/1.1 206 Partial Content
Content-Length: 1234567
Content-Type: video/ogg
Content-type: multipart/byteranges; boundary=THIS_STRING_SEPARATES
我使用的是 Nodejs 提供的 http 模块,当我发送响应头时,我只能定义一个“Content-Type”头:
var header = {};
header['Content-Type'] = "video/ogg";
或者
header['Content-Type'] = "multipart/byteranges; boundary=THIS_STRING_SEPARATES";
是否可以在响应中同时包含“Content-Type”?谢谢。