Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 asihttprequest 连接 Web 服务。我使用了服务并使用请求完成委托从服务器获取数据。现在我正在从服务器获取用户 ID 数据。基于这个 userID ,如何创建另一个 asihttprequest 到服务器以检索数据。
从第一个asihttprequest 响应中,解析出下一个 api 的请求参数,然后发送 asihttprequest 类似于您的第一个请求,如下所示:
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:self.url]; [request setDelegate:self]; [request setRequestMethod:@"GET"]; [request startSynchronous];