我如何将 mongodb 与电子一起使用?

How do i use mongodb with electron?(我如何将 mongodb 与电子一起使用?)
本文介绍了我如何将 mongodb 与电子一起使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我目前正在使用 Electron 和 MongoDB 构建一个桌面应用程序.此应用程序的目标是在应用程序的本地范围内(而不是在服务器上)收集和存储各种客户的信息.我用 node.js 对 MongoDB 做了一些研究;但是我还没有找到在 Electron 中使用它的方法.

解决方案

这是一个 MongoDB 管理,可以查看代码作为例子了解如何使用mongodb和electron.

https://github.com/officert/mongotron

基本上你可以像在主进程中的 node.js 中通常使用的那样使用 mongodb,然后通过 ipc 模块与 Renderer 进程通信.p>

例如:

渲染器进程

<html><头></头><身体><脚本>const ipc = require('electron').ipcRenderer;const informationBtn = document.getElementById('信息对话框')informationBtn.addEventListener('点击', function (event) {ipc.send('创建用户')})</脚本></身体><html>

主进程

const ipc = require('electron').ipcMainconst mongo = require('some-mongo-module')ipc.on('create-user', function (event) {/* MONGODB 代码 *
                
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Google apps script get range of bytes from binary file(谷歌应用程序脚本从二进制文件中获取字节范围)
Sending Multiple attachments with Google Script from Google Drive(使用 Google 脚本从 Google Drive 发送多个附件)
Distributing Google Apps Scripts for Sheets in your company network(在您的公司网络中分发适用于表格的 Google Apps 脚本)
Upload file to my google drive from anyone using javascript(使用 javascript 将文件从任何人上传到我的谷歌驱动器)
quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)
Angular 2+ HTTP POST and GDrive API. Resumable file upload with name(Angular 2+ HTTP POST 和 GDrive API.带名称的可恢复文件上传)