gpt4 book ai didi

javascript - Angular - 在本地文本文件中保存 blob?

转载 作者:行者123 更新时间:2023-12-02 14:47:51 25 4
gpt4 key购买 nike

我有一个纯文本变量,我想使用 Angular 将其存储并保存在 .txt 文件中。

到目前为止,我已经尝试了以下方法:

var data = new Blob([text], {type: 'text/plain'});
const url= window.URL.createObjectURL(data);
window.open(url);

以纯文本内容作为text变量。它似乎有效,但它会在新的浏览器选项卡上打开 de blob,我需要将其下载为 whatever.txt

我怎样才能做到这一点?谢谢!

最佳答案

可以在这里找到解决方案:

JavaScript blob filename without link

步骤如下:

  1. 创建隐藏 <a>标签。
  2. 设置它的href属性到 blob 的 URL。
  3. 设置它的download属性到文件名。
  4. 点击 <a>标签。

关于javascript - Angular - 在本地文本文件中保存 blob?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57922872/

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