为什么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);
});
});
答案 0 :(得分:0)
看起来您正在使用旧版本的文档来处理较新版本的requestify
阅读https://github.com/ranm8/requestify
的API reference
部分
稍微低一点看下来就看到了requesttify.request()示例。
选项没有host
,path
,...