我想在我的项目中实现Picasso,但是当我尝试在项目中实现 Picasso 时。我访问了他们的网站以获得依赖。但是他们删除了最新版本号,所以我找不到 Picasso 的最新版本号。
如果有人评论该版本,我会很高兴
网站链接(Click Here)
预先感谢
答案 0 :(得分:4)
最新版本为2.71828
var file = new BLob([response.data), {type: 'application/pdf'});
var fileURL = URL.createObjectURL(file);
// create <a> tag dinamically
var fileLink = document.createElement('a');
fileLink.href = fileURL;
// set PDF name will be downloaded
fileLink.download = 'pdf_name';
// triggers the click event
fileLink.click();
可在其github https://github.com/square/picasso
上获得答案 1 :(得分:2)
只需访问https://square.github.io/picasso/#download
复制GRADLE链接:实现'com.squareup.picasso:picasso :(插入最新版本)'
要从https://github.com/square/picasso/releases
获取版本2.8版是截至2020年10月4日的最新版本,该版本于2020年8月10日发布。
答案 2 :(得分:1)