asihttp 使用 POST 方法并将 nsMutabledata 发布到 uri,为什么我无法获取 asi 委托回调?

发布于 2024-11-08 18:23:53 字数 641 浏览 0 评论 0原文

伙计们! 当我在我的应用程序中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮云落日 2024-11-15 18:23:53

尝试使用以下方法:

[request setDidFinishSelector:@selector(requestDone:)];
[request setDidFailSelector:@selector(requestWentWrong:)];

这样您就可以确定请求完成后应该调用哪些方法。

Try using the following:

[request setDidFinishSelector:@selector(requestDone:)];
[request setDidFailSelector:@selector(requestWentWrong:)];

That way you know for sure what methods the request should be calling when it's done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文