2017-04-09 60 views
0

爲什麼requestify.request()崩潰,因爲它不認爲這是給POST方法的NodeJS requestify.request()崩潰

var postBody = querystring.stringify(dat); 

var postOptions = { 
    host: 'https://www.example.com' 
    , path: '/admin' 
    , method: 'post' // POST, 'POST', post 
    , headers: { 'Content-Type': 'application/json', 'Content-Length': Buffer.byteLength(postBody) } 
}; 

var postReq = requestify.request(postOptions, function (err, resp, respBody) { 
    resp.setEncoding('utf8'); 
    resp.on('data', function (chunk) { 
     console.log('Response: ' + chunk); 
    }); 
}); 

回答

0

它看起來像你使用舊版本的文件爲requestify

新的版本閱讀的https://github.com/ranm8/requestify

API reference部分和閱讀只是有點低了下去就看到一個requestify.request()的例子。

選項沒有hostpath,...