我正在运行以下thrift javascript客户端代码。如果服务器关闭,我不会在回调中收到任何错误 - 只是控制台日志消息。
如果未调用回调,我如何知道是否存在连接问题?
Javascript thrift客户端代码:
var transport = new Thrift.Transport("/api/thrift/");
var protocol = new Thrift.Protocol(transport);
var client = new ApiClient(protocol);
client.doSomething(function (result) {
// Never invoked if the server is down.
});
控制台日志消息:
POST http://localhost:81/api/thrift/ net::ERR_CONNECTION_REFUSED