js 파일 흐름, txt 내 보 내기
10237 단어 파일 흐름
var content = "file content!";
var data = new Blob([content],{type:"text/plain;charset=UTF-8"});
var downloadUrl = window.URL.createObjectURL(data);
var anchor = document.createElement("a");
anchor.href = downloadUrl;
anchor.download = " .txt";
anchor.click();
window.URL.revokeObjectURL(data);
//
var blob = new Blob([ ], { type: 'application/octet-stream' }),
fileName = 'filename' + path.substring(path.lastIndexOf("."), path.length);
////filename, , mimetypes = array(
//// 'doc' => 'application/msword',
//// 'bin' => 'application/octet-stream',
//// 'exe' => 'application/octet-stream',
//// 'so' => 'application/octet-stream',
//// 'dll' => 'application/octet-stream',
//// 'pdf' => 'application/pdf',
//// 'ai' => 'application/postscript',
//// 'xls' => 'application/vnd.ms-excel',
//// 'ppt' => 'application/vnd.ms-powerpoint',
//// 'dir' => 'application/x-director',
//// 'js' => 'application/x-javascript',
//// 'swf' => 'application/x-shockwave-flash',
//// 'xhtml' => 'application/xhtml+xml',
//// 'xht' => 'application/xhtml+xml',
//// 'zip' => 'application/zip',
//// 'mid' => 'audio/midi',
//// 'midi' => 'audio/midi',
//// 'mp3' => 'audio/mpeg',
//// 'rm' => 'audio/x-pn-realaudio',
//// 'rpm' => 'audio/x-pn-realaudio-plugin',
//// 'wav' => 'audio/x-wav',
//// 'bmp' => 'image/bmp',
//// 'gif' => 'image/gif',
//// 'jpeg' => 'image/jpeg',
//// 'jpg' => 'image/jpeg',
//// 'png' => 'image/png',
//// 'css' => 'text/css',
//// 'html' => 'text/html',
//// 'htm' => 'text/html',
//// 'txt' => 'text/plain',
//// 'xsl' => 'text/xml',
//// 'xml' => 'text/xml',
//// 'mpeg' => 'video/mpeg',
//// 'mpg' => 'video/mpeg',
//// 'avi' => 'video/x-msvideo',
//// 'movie' => 'video/x-sgi-movie',
////);
downFile(blob, fileName);
//js
function downFile(blob, fileName) {
if (window.navigator.msSaveOrOpenBlob) {
navigator.msSaveBlob(blob, fileName);
} else {
var link = document.createElement('a');
link.href = window.URL.createObjectURL(blob);
link.download = fileName;
link.click();
window.URL.revokeObjectURL(link.href);
}
}
다음으로 이동:https://blog.csdn.net/lixiaoer757/article/details/80272281
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
js 파일 흐름, txt 내 보 내기js 파일 흐름, txt 내 보 내기 다음으로 이동:https://blog.csdn.net/lixiaoer757/article/details/80272281...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.