How JavaScript saves text as a file in a browser

Source: Internet
Author: User

How JavaScript saves text as a file in a browser

Tested the second way to save more text than to get stuck

var saveTextAsFile1 = function (text, FileName, success, error) {var data = text; if (! (    Text instanceof Array) {data = [text];    } var file = New file (data, fileName);    var reader = new FileReader ();    Reader.readasdataurl (file);        Reader.onload = function (r) {var url = reader.result;            DownLoadFile (URL, fileName, function () {Success && success ();            }, function () {Error && error ();    }); };} /** * Download File * @param {string, Array} text * @param {string} FileName * @param {function} success * @param {function} err    or */var savetextasfile = function (text, FileName, success, error) {var data = text; if (! (    Text instanceof Array) {data = [text]; } var urlobject = window. URL | | Window.webkiturl | |    Window    var export_blob = new blob (data);    var url = urlobject.createobjecturl (Export_blob);         DownLoadFile (URL, fileName, function () {   Success && success ();        }, function () {Error && error (); });}

  

How JavaScript saves text as a file in a browser

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.