毕加索是否会缓存请求状态?

时间:2017-04-12 06:44:37

标签: android caching picasso

我的服务器包含暂时无法加载的图片 - 后端返回未来图片的网址。不知何故,当Picasso第一次尝试加载图片时,他会遇到404 http错误。几秒钟后,Web服务器上出现了图像,我再次尝试加载,但是我收到404错误。所以问题很简单 - 毕加索缓存请求吗?或回应状态?

示意性地看起来像

Picasso -> load(URL) -> 404 error - image not exit on web-server

few seconds later

Picasso -> load(URL) -> 404 error - image exist on web-server.

2 个答案:

答案 0 :(得分:0)

你能发布毕加索的日志吗?

Picasso.with(getApplicationContext()).setIndicatorsEnabled(true);
Picasso.with(getApplicationContext()).setLoggingEnabled(true);

答案 1 :(得分:0)

Picasso.with(上下文)        .load(URL)        .memoryPolicy(MemoryPolicy.NO_CACHE)        .resize(180,180)        .centerCrop()        .into(iv_profile_pic,new Callback(){};