nodeJS 请求 POST 到 localhost:3000 ECONNREFUSED
nodeJS request POST To localhost:3000 ECONNREFUSED
有一次我只想在 localhost:3000
上向我的 rails
服务器 运行 发出 POST
请求
如果在 cUrl
上使用 postman
我可以 ping 我的 API
但是哇,我想用我的节点应用程序来做这个:
var req_body = {
'my_id': id,
'dataTable': data }
var options = {
method: 'POST',
url: config.get('api_url') + 'end_tracking',
json: true,
body: req_body
}
// config.get('api_url') return http://localhost:3000/
request(options, function (error, response, body) {
console.log(error)
... }
这是我得到的:
{ Error: connect ECONNREFUSED 127.0.0.1:3000
at Object.exports._errnoException (util.js:896:11)
at exports._exceptionWithHostPort (util.js:919:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1073:14)
code: 'ECONNREFUSED',
errno: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 3000 }
正如我所说,如果我直接向邮递员发出此请求,一切正常!
我是怎么做到的,只是使用相同的结构,我希望它对你有用
request({
url: url, //URL to hit
method: 'post',
headers: headers,
timeout: 10000,
body: JSON.stringify(body)
}, function (error, result, body) {
if (error) {
console.log(error);
} else if (result.statusCode == 500) {
console.log('not found');
} else {
console.log('success')
}
});
希望它有用。
我终于做到了!
由于未知原因,访问 localhost:3000
,使用 rails s
启动在我的节点服务器上根本不起作用
但是当我用 rails s -b 0.0.0.0
!
启动 rails 服务器时我工作了
有一次我只想在 localhost:3000
rails
服务器 运行 发出 POST
请求
如果在 cUrl
上使用 postman
我可以 ping 我的 API
但是哇,我想用我的节点应用程序来做这个:
var req_body = {
'my_id': id,
'dataTable': data }
var options = {
method: 'POST',
url: config.get('api_url') + 'end_tracking',
json: true,
body: req_body
}
// config.get('api_url') return http://localhost:3000/
request(options, function (error, response, body) {
console.log(error)
... }
这是我得到的:
{ Error: connect ECONNREFUSED 127.0.0.1:3000
at Object.exports._errnoException (util.js:896:11)
at exports._exceptionWithHostPort (util.js:919:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1073:14)
code: 'ECONNREFUSED',
errno: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 3000 }
正如我所说,如果我直接向邮递员发出此请求,一切正常!
我是怎么做到的,只是使用相同的结构,我希望它对你有用
request({
url: url, //URL to hit
method: 'post',
headers: headers,
timeout: 10000,
body: JSON.stringify(body)
}, function (error, result, body) {
if (error) {
console.log(error);
} else if (result.statusCode == 500) {
console.log('not found');
} else {
console.log('success')
}
});
希望它有用。
我终于做到了!
由于未知原因,访问 localhost:3000
,使用 rails s
启动在我的节点服务器上根本不起作用
但是当我用 rails s -b 0.0.0.0
!