asihttp 使用 POST 方法并将 nsMutabledata 发布到 uri,为什么我无法获取 asi 委托回调?
伙计们! 当我在我的应用程序中使用 asihttp 时,我的意思是一个带有 nsmutabledata 的主体流的 post 方法,但我无法得到应该是什么,只是无法回调
- (void)requestFinished:(ASIHTTPRequest *)request;
或
- (void)request:(ASIHTTPRequest *)request didReceiveData:(NSData *)data
委托方法。 ASIFormDataRequest 也不能 但是同步请求是可以的,只是异步错误。这是我的请求代码,我如何将它适合我的应用程序?感谢您的帮助!
ASIHTTPRequest* request=[ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request setPostBody:data];
[request setTimeOutSeconds:30];
[request setRequestMethod:@"POST"];
[request startAsynchronous];
guys!
when i using asihttp in my app,i meant a post method with a nsmutabledata for body stream,but i can't get what should be,just couldn't callback the
- (void)requestFinished:(ASIHTTPRequest *)request;
or
- (void)request:(ASIHTTPRequest *)request didReceiveData:(NSData *)data
delegate method. ASIFormDataRequest can't either
but Synchronous request is ok,just error for asynchronous.that's my request code below,how i can fit it for my app? thanks for any help!
ASIHTTPRequest* request=[ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request setPostBody:data];
[request setTimeOutSeconds:30];
[request setRequestMethod:@"POST"];
[request startAsynchronous];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用以下方法:
这样您就可以确定请求完成后应该调用哪些方法。
Try using the following:
That way you know for sure what methods the request should be calling when it's done.