gpt4 book ai didi

angularjs - 如何在带有 Electron 的 AngularJS 应用程序中使用 fs Node 模块?

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

如何在 AngularJS 应用程序中使用 fs Node 模块?

我想在我的应用程序 AngularJS 中包含来自 node.js 的 fs 模块

我用 Electron 创建了一个带有导出文件的应用程序。目前我有一个基本的导出,

$scope.exportProject = function () {
var blob = new Blob(['the_content'], {type: 'text/json'}),
event = document.createEvent('MouseEvents'),
file = document.createElement('a');

// Name file
file.download = 'my_config';

// Create link
file.href = window.URL.createObjectURL(blob);
file.dataset.downloadurl = ['text/json', file.download, file.href].join(':');

// Init event
event.initEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);

// Dispatch event
file.dispatchEvent(event);
};

但是当我点击我的按钮导出时,有一个临时文件,我不想要它。

如果我从 Node 使用 FS,我认为没问题,没有临时文件。

最佳答案

简短的回答,不。

如果您正在使用 AngularJS 并创建一个 Electron 应用程序(使用 Web 技术构建的桌面应用程序)——那么答案就变成了,也许。

关于angularjs - 如何在带有 Electron 的 AngularJS 应用程序中使用 fs Node 模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37730815/

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