Closed 931743010 closed 8 years ago
@干干净净#哈哈哈哈*``
你没写异常回调,所以如果发生错误,错误会忽略,你加上异常回调,就知道出错出在哪儿了。
嗯,我换最新的库,是好的。应该是之前的库的问题。 是有异常回调的,但是没走进去,服务器是没有回应的。
在2016年03月31日 19:49,小马哥 写道:
你没写异常回调,所以如果发生错误,错误会忽略,你加上异常回调,就知道出错出在哪儿了。
— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub
哦,对。原来的版本是有点问题
(HproseClient_) sharedHPClient{ static HproseClient *_sharedHPClient = nil; static dispatch_once_t onceToken; dispatchonce(&onceToken, ^{ NSString webHost = API_HOST; _sharedHPClient = [[HproseHttpClient alloc] init:webHost]; [_sharedHPClient setDelegate:self]; [_sharedHPClient setOnError:@selector(errorHandler:withException:)]; [_sharedHPClient setFilter:[LogFilter new]]; }); return _sharedHPClient; }
[[HttpClient sharedHPClient] invoke:GetStatistics withArgs:@[text] block:^(id responseString, NSArray * params) {