JS string文本转file文件


1 /**
* 文本转文件
 * @constructor
 */
TxtToFile: function (str, name) {
    let blob = new Blob([str], {type: "text/plain;charset=utf-8"});
    return new File([blob], name, {type: "text/plain"});
},
使用方法 TxtFile("文本", "文件名")

0 0
讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!
帮助