ASIHTTP 缓存 POST GET
我想使用 ASIHTTP 来管理缓存一些 JSON 请求。 最初我认为我所要做的就是这样:
[ASIHTTPRequest setDefaultCache:[ASIDownloadCache sharedCache]];
http://allseeing-i.com/ ASIHTTPRequest/How-to-use
但是经过测试,我可以看到没有任何内容被缓存。 我认为这是因为 ASI 缓存仅适用于 GET,而我使用的是 POST。 我想尝试发送 GET 但我知道如何发送。 我尝试设置请求方法但没有改变。
[request setRequestMethod:@"GET"];
I would like to use ASIHTTP to manage caching some JSON requests.
Originally I though all I had to do was this:
[ASIHTTPRequest setDefaultCache:[ASIDownloadCache sharedCache]];
http://allseeing-i.com/ASIHTTPRequest/How-to-use
However after testing I can see that nothing is being cached.
I think this is because ASI cacheing only works with GET and I'm using POST.
I want to try sending a GET but I can see how.
I've tried setting the request method but no change.
[request setRequestMethod:@"GET"];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
setCachePolicy
使用不同的缓存策略。通过
ASIOnlyLoadIfNotCachedCachePolicy
,您可以强制使用缓存的响应(如果存在)。Try to use a different cache policy using
setCachePolicy
.With
ASIOnlyLoadIfNotCachedCachePolicy
you can enforce to use the cached response if it exists.在 ASIDownloadCache.m 中找到它。
现在您可以通过 POST 方法使用缓存。
Find this in ASIDownloadCache.m.
Now you can use cache with POST method.