NodeJS - ERR_INVALID_ARG_TYPE 向远程主机发出 HTTP 请求时抛出错误
NodeJS - ERR_INVALID_ARG_TYPE Error thrown while issuing a HTTP request to remote host
最近,我在尝试使用 NodeJS 和 request-promise 发出请求时遇到问题。
以下代码嵌套在用于文件上传的 multer 调用中(使用嵌套函数/集群。
const options = {
method: 'POST',
uri: 'URL of your choice',
body: {
//Body of the request
},
// json: true,
headers: {
// 'Content-Type': 'application/x-www-form-urlencoded',
},
}
request(options)
.then(function (response) {
console.log('Response: ', response);
})
.catch(function (err) {
console.log('Error: ', err);
});
在使用当前请求时,如果没有 'json: true' 属性(已注释掉),我会收到以下错误:
TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be one of type string or Buffer. Received type object
at write_ (_http_outgoing.js:603:11)
at ClientRequest.write (_http_outgoing.js:575:10)
at Request.write (PATH/node_modules/request/request.js:1500:27)
at end (PATH/node_modules/request/request.js:549:18)
at Immediate.<anonymous> (PATH/node_modules/request/request.js:578:7)
at runCallback (timers.js:696:18)
at tryOnImmediate (timers.js:667:5)
at processImmediate (timers.js:649:5)
at process.topLevelDomainCallback (domain.js:121:23)
当我打开 'json: true' 选项时,问题没有发生,但是远程 API returns 出现错误,因为它没有处理 JSON requests/their 花括号加的很好
关于解决这个问题有什么想法吗?
谢谢。
试试下面 -
url = "your url"
const options = {
url: url,
method: 'POST',
headers: {
Accept: 'application/json',
'Accept-Charset': 'utf-8'
},
body: {
}
};
request.post(options, function (err, response, body) {
// do something with your data
console.log(response.statusCode);
console.log(body)
});
解决了!
由于远程主机不能很好地处理 JSON,并且需要发送 "ordinary" POST 请求,我再次查看了 request-promise 的文档。
把body{}
改成formData{}
,然后注释掉json: true
,问题就解决了
const options = {
method: 'POST',
uri: 'URL of your choice',
formData: {
//Request's data
},
}
request(options)
.then(function (response) {
console.log('Response: ', response);
})
.catch(function (err) {
console.log('Error: ', err);
});
我遇到了类似的问题,就我而言,上传目录没有正确定义,请确保您要上传文件的路径存在并且定义明确
最近,我在尝试使用 NodeJS 和 request-promise 发出请求时遇到问题。
以下代码嵌套在用于文件上传的 multer 调用中(使用嵌套函数/集群。
const options = {
method: 'POST',
uri: 'URL of your choice',
body: {
//Body of the request
},
// json: true,
headers: {
// 'Content-Type': 'application/x-www-form-urlencoded',
},
}
request(options)
.then(function (response) {
console.log('Response: ', response);
})
.catch(function (err) {
console.log('Error: ', err);
});
在使用当前请求时,如果没有 'json: true' 属性(已注释掉),我会收到以下错误:
TypeError [ERR_INVALID_ARG_TYPE]: The first argument must be one of type string or Buffer. Received type object
at write_ (_http_outgoing.js:603:11)
at ClientRequest.write (_http_outgoing.js:575:10)
at Request.write (PATH/node_modules/request/request.js:1500:27)
at end (PATH/node_modules/request/request.js:549:18)
at Immediate.<anonymous> (PATH/node_modules/request/request.js:578:7)
at runCallback (timers.js:696:18)
at tryOnImmediate (timers.js:667:5)
at processImmediate (timers.js:649:5)
at process.topLevelDomainCallback (domain.js:121:23)
当我打开 'json: true' 选项时,问题没有发生,但是远程 API returns 出现错误,因为它没有处理 JSON requests/their 花括号加的很好
关于解决这个问题有什么想法吗?
谢谢。
试试下面 -
url = "your url"
const options = {
url: url,
method: 'POST',
headers: {
Accept: 'application/json',
'Accept-Charset': 'utf-8'
},
body: {
}
};
request.post(options, function (err, response, body) {
// do something with your data
console.log(response.statusCode);
console.log(body)
});
解决了!
由于远程主机不能很好地处理 JSON,并且需要发送 "ordinary" POST 请求,我再次查看了 request-promise 的文档。
把body{}
改成formData{}
,然后注释掉json: true
,问题就解决了
const options = {
method: 'POST',
uri: 'URL of your choice',
formData: {
//Request's data
},
}
request(options)
.then(function (response) {
console.log('Response: ', response);
})
.catch(function (err) {
console.log('Error: ', err);
});
我遇到了类似的问题,就我而言,上传目录没有正确定义,请确保您要上传文件的路径存在并且定义明确