0
我對如何管理一些數據有點困惑。如何管理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接口不老流格式)