我的服务器包含暂时无法加载的图片 - 后端返回未来图片的网址。不知何故,当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.
答案 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(){};