在没有代理的本地域上修复Axios错误ECONNREFUSED

时间:2019-01-09 16:21:25

标签: node.js axios nightmare

我遇到了Axios的这个愚蠢问题。

我正在尝试使用下面的一段噩梦JS搜寻器代码向我的基本本地Symfony应用发送本地POST请求: Yuzu.fun是我的本地开发域,在/ etc / hosts中有一个条目可以解决该问题,该应用程序在端口80上运行。

await axios.request({
  url: 'http://yuzu.fun/app_dev.php/api/path/to/endpoint',
  headers: {
    'key': 'xxxxxx'
  },
  method: 'post',
  proxy: false,
  data: {
    image_data: data
  }
})
.then(function (response) {
  map_hash = response.message;
  console.log('buildMap', map_hash);
})
.catch(function (error) {
  console.error('upload failed:', error);
});

运行脚本时,出现以下错误:

upload failed: { Error: connect ECONNREFUSED 127.0.0.1:80
at Object._errnoException (util.js:1022:11)
at _exceptionWithHostPort (util.js:1044:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1198:14)
code: 'ECONNREFUSED',
errno: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 80,
config: 
 { adapter: [Function: httpAdapter],
 transformRequest: { '0': [Function: transformRequest] },
 transformResponse: { '0': [Function: transformResponse] },
 timeout: 0,
 xsrfCookieName: 'XSRF-TOKEN',
 xsrfHeaderName: 'X-XSRF-TOKEN',
 maxContentLength: -1,
 validateStatus: [Function: validateStatus],
 headers: 
  { Accept: 'application/json, text/plain, */*',
    'Content-Type': 'application/json;charset=utf-8',
    key: 'xxxxx',
    'User-Agent': 'axios/0.18.0',
    'Content-Length': 4173 },
 method: 'post',
 url: 'http://yuzu.fun/app_dev.php/api/path/to/endpoint',
 proxy: false,
 data: '{"image_data":"imagedatainbase64"}' },
request: 
 Writable {
 _writableState: 
  WritableState {
    objectMode: false,
    highWaterMark: 16384,
    finalCalled: false,
    needDrain: false,
    ending: false,
    ended: false,
    finished: false,
    destroyed: false,
    decodeStrings: true,
    defaultEncoding: 'utf8',
    length: 0,
    writing: false,
    corked: 0,
    sync: true,
    bufferProcessing: false,
    onwrite: [Function: bound onwrite],
    writecb: null,
    writelen: 0,
    bufferedRequest: null,
    lastBufferedRequest: null,
    pendingcb: 0,
    prefinished: false,
    errorEmitted: false,
    bufferedRequestCount: 0,
    corkedRequestsFree: [Object] },
 writable: true,
 domain: null,
 _events: 
  { response: [Function: handleResponse],
    error: [Function: handleRequestError] },
 _eventsCount: 2,
 _maxListeners: undefined,
 _options: 
  { maxRedirects: 21,
    maxBodyLength: 10485760,
    protocol: 'http:',
    path: '/app_dev.php/api/path/to/endpoint',
    method: 'post',
    headers: [Object],
    agent: undefined,
    auth: undefined,
    hostname: 'yuzu.fun',
    port: null,
    nativeProtocols: [Object],
    pathname: '/app_dev.php/api/path/to/endpoint' },
 _ended: false,
 _ending: true,
 _redirectCount: 0,
 _redirects: [],
 _requestBodyLength: 4173,
 _requestBodyBuffers: [ [Object] ],
 _onNativeResponse: [Function],
 _currentRequest: 
  ClientRequest {
    domain: null,
    _events: [Object],
    _eventsCount: 6,
    _maxListeners: undefined,
    output: [],
    outputEncodings: [],
    outputCallbacks: [],
    outputSize: 0,
    writable: true,
    _last: true,
    upgrading: false,
    chunkedEncoding: false,
    shouldKeepAlive: false,
    useChunkedEncodingByDefault: true,
    sendDate: false,
    _removedConnection: false,
    _removedContLen: false,
    _removedTE: false,
    _contentLength: null,
    _hasBody: true,
    _trailer: '',
    finished: false,
    _headerSent: true,
    socket: [Object],
    connection: [Object],
    _header: 'POST /app_dev.php/api/path/to/endpoint HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nContent-Type: application/json;charset=utf-8\r\nkey: xxxxx\r\nUser-Agent: axios/0.18.0\r\nContent-Length: 4173\r\nHost: yuzu.fun\r\nConnection: close\r\n\r\n',
    _onPendingData: [Function: noopPendingOutput],
    agent: [Object],
    socketPath: undefined,
    timeout: undefined,
    method: 'POST',
    path: '/app_dev.php/api/path/to/endpoint',
    _ended: false,
    res: null,
    aborted: undefined,
    timeoutCb: null,
    upgradeOrConnect: false,
    parser: null,
    maxHeadersCount: null,
    _redirectable: [Circular],
    [Symbol(outHeadersKey)]: [Object] },
 _currentUrl: 'http://yuzu.fun//app_dev.php/api/path/to/endpoint' },
response: undefined }

我尝试发布到随机端点,以检查连接到活动域时连接是否正常,可以,但是在本地不起作用。 当我检查stackoverflow或论坛时,我看到有人提到代理问题,因此我将其强行设置为false,但我不认为我担心的事情。

此代码最初是用request.post()编写的,但我需要Axios Promises的好处。通过请求编写代码时,可以正确访问本地域。因此,我排除了噩梦可能会干扰域解析的事实。

有人有什么想法可以在这里出错吗?

谢谢!

0 个答案:

没有答案