我对如何传输一些数据有点困惑。
我有一些管道正在工作和链接,这样我就没有包含我想输入到请求 POST 的数据的输出流
var options = {
host: 'localhost',
port: 8529,
path: '/_api/cursor',
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': data.length
}
}
var req = http.request(options);
我通常只会操作 'mystreams2.pipe(req)' 但如何设置 'data.length' 值?
(我使用的是streams2接口而不是旧的流格式)