gpt4 book ai didi

javascript - 在 JavaScript 中下载文本文件

转载 作者:行者123 更新时间:2023-12-03 06:11:41 25 4
gpt4 key购买 nike

就像标题所说,我正在尝试用 javascript 下载文本文件。最好的方法是 .docx 文件,但 .txt 也可以。我看到了 blob 框架并尝试了它,但不起作用..看起来它无法保存我的文件。

我保存文本文件的代码:

 function totxt(){
var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
saveAs(blob, "helloworld.txt");
}

最佳答案

您可能忘记插入所需的 JS 库文件。您可以在 this link 找到演示,像这样:

function totxt() {
var blob = new Blob(["Hello, world!"], {
type: "text/plain;charset=utf-8"
});
saveAs(blob, "helloworld.txt");
}

$("#test").on("click", function(e) {
e.preventDefault();
totxt();
});
<body>

<button id="test">press</button>
<script src="https://cdn.rawgit.com/eligrey/Blob.js/0cef2746414269b16834878a8abc52eb9d53e6bd/Blob.js" />
<script src="https://cdn.rawgit.com/eligrey/FileSaver.js/e9d941381475b5df8b7d7691013401e171014e89/FileSaver.min.js" />

</body>

关于javascript - 在 JavaScript 中下载文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39290232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com