Use js to download link images in the browser instead of opening them directly

function download(link) {
    var $a = $("<a></a>").attr("href", link).attr("download", "");
    $a[0].click();
}

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326893612&siteId=291194637