如何用vibed检查互联网连接状态?

时间:2015-06-28 09:17:14

标签: d vibed

在应用开始之前,我需要检查互联网连接是否已启动。做这个的最好方式是什么?我正在使用振动。

我写了下一段代码:

import std.stdio;
import std.string;
import std.conv;
import vibe.d;
import vibe.core.log;
import vibe.http.client;
import vibe.stream.operations;
import vibe.core.driver;

void main()
{

    HTTPClientResponse res = requestHTTP("http://www.example.org/");
    try
    {

        if (res.statusCode != 200)
        {
            logInfo("Check Internet connection, and try again!");
            logInfo("Server response is: " ~ to!string(res.statusCode));
        }
        else
        {
            logInfo("All ok");
        }
    }

    catch (Exception e)
    {
        writeln(e.msg);
    }
}

但如果我在没有互联网连接的情况下运行它,我就会收到错误:

core.exception.AssertError@core.d(1177): No events registered, exiting event loop.

1 个答案:

答案 0 :(得分:0)

您需要移动线

HTTPClientResponse res = requestHTTP("http://www.example.org/");

try块内部以捕获异常。

如果没有互联网连接,则通常没有可用的名称服务。这意味着在没有互联网连接的情况下抛出异常的可能性很高。