从localhost接收数据会引发“Connection Refused Error”

时间:2017-12-01 12:02:32

标签: sockets http dart flutter

我正在运行一个颤动的应用程序并尝试使用以下方法从localhost接收json:

Future<String> getJson() async {
    http.Response response = await http.get(
      Uri.encodeFull("http://localhost:3000/get"),
      headers: {
        "Accept": "application/json"
      }
    );

每当我运行应用程序时,我都会遇到未处理的异常:

SocketException: OS Error: Connection refused, errno = 111, address = 127.0.0.1, port = 48134

端口48134已打开。现在,我想到可能将我的侦听端口更改为上面的端口。这样做,将错误中的端口切换到其他随机端口并给出相同的错误。
我不明白为什么它甚至在寻找那个港口。它不是写在任何地方。
有人有什么想法吗?提前谢谢。

0 个答案:

没有答案