如何知道从javascript客户端使用thrift时是否发生连接错误?

时间:2015-08-22 15:07:55

标签: javascript thrift thrift-protocol

我正在运行以下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

0 个答案:

没有答案