12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
export class Download
|
|
{
|
|
static download(url: string)
|
|
{
|
|
const a = document.createElement("a");
|
|
a.style.display = "none";
|
|
a.href = "http://localhost:8080/maven2/" + url;
|
|
document.body.appendChild(a);
|
|
a.click();
|
|
document.body.removeChild(a);
|
|
}
|
|
} |