0

为什么 requestify.request() 会崩溃,因为它认为它没有被赋予 POST 方法

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);
    });
});
4

1 回答 1

0

看起来您正在为较新版本的 requestify 使用旧版本的文档

阅读https://github.com/ranm8/requestifyAPI reference部分

再往下读一点,看看 requestify.request() 例子。

选项没有host, path, ...

于 2017-04-09T18:57:47.617 回答