downloadTemplate() {
? ? ? var videoUrl = "/static/template-file.txt"; // 替換為你要下載的的URL
? ? ? var fileName = "template-file.txt"; // 下載的文件名
? ? ? // 創(chuàng)建一個隱藏的a標(biāo)簽
? ? ? var a = document.createElement('a');
? ? ? a.style.display = 'none';
? ? ? document.body.appendChild(a);
? ? ? // 使用XMLHttpRequest下載視頻
? ? ? var xhr = new XMLHttpRequest();
? ? ? xhr.open('GET', videoUrl, true);
? ? ? xhr.responseType = 'blob';
? ? ? xhr.onload = function() {
? ? ? ? if (xhr.status === 200) {
? ? ? ? ? // 將視頻Blob對象創(chuàng)建一個臨時URL
? ? ? ? ? var videoBlob = xhr.response;
? ? ? ? ? var url = window.URL.createObjectURL(videoBlob);
? ? ? ? ? // 設(shè)置a標(biāo)簽的屬性仓蛆,并觸發(fā)點擊事件進(jìn)行下載
? ? ? ? ? a.href = url;
? ? ? ? ? a.download = fileName;
? ? ? ? ? a.click();
? ? ? ? ? // 釋放URL對象
? ? ? ? ? window.URL.revokeObjectURL(url);
? ? ? ? }
? ? ? };
? ? ? xhr.send();
? ? },