如何在电子中处理本地文件上传? [英] How do I handle local file uploads in electron?

查看:87
本文介绍了如何在电子中处理本地文件上传?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很难弄清楚如何处理原子电子中的文件上传。我会发布代码,但我甚至不知道从哪里开始。

I'm having a hard time figuring out how to approach file uploads in atom electron. I would post code but I don't even know where to begin with this one.

在标准的Web应用程序中,我会通过标准的回发或使用ajax请求从客户端发布到服务器。我有一些非常酷的解决方案。但就电子而言,我不知道在哪里或如何发布该文件。我想我只是想从node.js访问我的< input type ='file'/> 的内容。我该怎么做呢?

In a standard web app I would post from the client to the server, either via a standard postback or using an ajax request. I have some pretty cool solutions for that. But in the case of electron, I'm not sure where or how to "post" the file back. I guess I just want to access the contents of my <input type='file' /> from node.js. How do I do this?

我可以发布到浏览器进程,但我不知道地址是什么。或者我是否需要在我的应用中创建一个单独的页面才能接受表单帖子?我在web-dev中的背景可能让我觉得有些明显的答案,有人可以帮忙吗?

I could post to the browser process, but I don't know what the "address" would be. Or do I need to create a separate "page" in my app just to accept form posts? My background in web-dev is probably blinding me to some obvious answer, can someone help?

为了增加一点上下文,我有一个 .csv 我想允许用户上传的文件。然后我将使用node-csv处理它,并将每个返回的行插入应用程序的nedb数据存储区。

Just to add a little more context, I have a .csv file which I'd like to allow the user to upload. I will then process this using node-csv and insert each returned row into the app's nedb datastore.

推荐答案

如果您要在用户的机器上处理该文件,则无需在任何地方上传文件,它是已经准确到了你需要的地方。您只需弹出一个对话框,允许用户浏览其文件系统并选择他们希望您的应用处理的文件。您可以创建一个按钮并致电 dialog.showOpenDialog 当用户按下它时,会得到一个文件名,然后你可以使用Node的 fs.readFile 从磁盘读取它,然后你可以继续以你想要的任何方式处理内容。

If you're going to process the file on the user's machine then there is no need to upload the file anywhere, it's already exactly where you need it. All you need to do is popup a dialog to allow the user to browse their file system and select the file they want your app to process. You can create a button and call dialog.showOpenDialog when the user presses it, that will get you a filename and you can then use Node's fs.readFile to read it from disk, then you can go ahead and process the contents in whichever way you want.

这篇关于如何在电子中处理本地文件上传?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆