ASIHTTP 缓存 POST GET

发布于 2024-12-03 04:12:37 字数 445 浏览 1 评论 0原文

我想使用 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 技术交流群。

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

发布评论

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

评论(2

漫漫岁月 2024-12-10 04:12:37

尝试使用 setCachePolicy 使用不同的缓存策略。

通过 ASIOnlyLoadIfNotCachedCachePolicy,您可以强制使用缓存的响应(如果存在)。

Try to use a different cache policy using setCachePolicy.

With ASIOnlyLoadIfNotCachedCachePolicy you can enforce to use the cached response if it exists.

流心雨 2024-12-10 04:12:37

在 ASIDownloadCache.m 中找到它。

if (![[self requestMethod] isEqualToString:@"GET"]) {
        [self setDownloadCache:nil];
    }

现在您可以通过 POST 方法使用缓存。

Find this in ASIDownloadCache.m.

if (![[self requestMethod] isEqualToString:@"GET"]) {
        [self setDownloadCache:nil];
    }

Now you can use cache with POST method.

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