13

我正在用 React 编写一个节点应用程序,使用 node-postgres 和 superagent 进行后端调用。假设我正在发出 GET 请求并使用它返回的 JSON 来填充学生表。我的 API 如下所示:

import pg from 'pg';
import Router from 'express';
let router = new Router();
let conString = "postgres://user:pass@localhost/db_name";

router.get('/getStudents', function(req, res) {
  var results = [];

    pg.connect(conString, function(err, client, done) {
      if (err) {
       done();
       console.log(err);
       return res.status(500).json({success: false, data: err});
    }

    var query = client.query('SELECT first_name, last_name, email FROM students');

    query.on('row', function(row) {
      results.push(row);
    });

    query.on('end', function() {
      done();
      return res.json(results);
    });
  });
});

在页面加载时,从存储中调用它来设置一个学生数组。这里似乎出了点问题:

var request = require('super agent');

function getStudents() {
   request
     .get('/api/getStudents')
     .set('Accept', 'application/json')
     .end(function(err, res) {
       if (err) {
         console.log("There's been an error: getting students.");
         console.log(err);
       } else {
         return res;
       }
     });
 }

如果我 curl localhost:3000/api/getStudents,我会得到我期望的 JSON 响应。

但是,当我在页面加载时调用它时,我收到一个 ECONNREFUSED 错误:

Error: connect ECONNREFUSED 127.0.0.1:80]
code: 'ECONNREFUSED',
errno: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 80,
response: undefined

不知道为什么我在 HTTP 端口上收到错误。这是我第一次使用 node-postgres、superagent 和 React,因此非常感谢任何帮助。

编辑:忘了提到我能够发出 POST 请求并将项目插入数据库而没有任何错误。此错误仅在我尝试 GET 请求时发生。

4

2 回答 2

7

在方法中试试这个(插入完整路径 url)get

request
  .get('http://localhost:3000/api/getStudents')
  .set('Accept', 'application/json')
  .end(function(err, res) {
    if (err) {
      console.log("There's been an error: getting students.");
      console.log(err);
    } else {
      return res;
    }
  });

查看 CORS 的文档以获取使用绝对 URL 的示例:

https://visionmedia.github.io/superagent/#cors

于 2015-12-11T06:51:03.787 回答
0

如果您的请求 URL 中没有协议,也会发生错误。

反而

request.get('www.myexample.com/api/getStudents')

request.get('https://www.myexample.com/api/getStudents')
             ^^^^^^^^
于 2019-01-04T17:52:24.730 回答