电子处理输入

时间:2016-10-28 14:05:04

标签: javascript node.js forms electron

我最近开始用Electron弄湿我的脚。我非常喜欢它背后的原理,但我觉得做一些事情有点令人困惑。

例如,您如何处理用户输入?我有一个main.js和一个指向本地html文件的BrowserWindow(包含一些带输入字段的用户设置)。

如何在提交HTML表单(同一个文件或另一个文件)时访问此数据?

main.js

    const {app, BrowserWindow} = require('electron')
let win

function createWindow () {
  win = new BrowserWindow({width: 800, height: 600})
  win.loadURL('file://' + __dirname + '/index.html')

  // Emitted when the window is closed.
  win.on('closed', () => {
    win = null
  })

  // Open the DevTools.
  // win.webContents.openDevTools()
}

app.on('window-all-closed', () => {
  if (process.platform !== 'darwin') {
    app.quit()
  }
})

app.on('activate', () => {
  if (win === null) {
    createWindow()
  }
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.

//Start the main window
app.on('ready', createWindow)

的index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <form action="" method="post">
        <input type="text" name="test-1">
    </form>
</body>
</html>

1 个答案:

答案 0 :(得分:4)

使用Electron,node.js不会像在典型的Web应用程序场景中那样具有类似路由的Web服务器。您可以使用像Angular,React,Knockout等javascript框架创建单个页面应用程序,而不是向路径发送请求。此时,您不再需要处理路由。您可以将“提交”点击事件直接绑定到页面中的javascript函数,然后从那里处理输入。

您可以从页面的javascript上下文中执行所有操作,您可以从node.js主进程上下文执行此操作。例如,如果您需要从页面访问文件系统,则可以使用Remote模块来访问node.js本机API。

例如:

// Gain access to the node.js file system api
function useNodeApi() {
  const remote = require('electron').remote;
  const fs = remote.require('fs');
  fs.writeFile('test.txt', 'Hello, I was written by the renderer process!');
}

我很少遇到需要将控制权传递回主要流程才能完成某些任务的情况。一旦BrowserWindow启动,您可能需要做的任何事情都可以从渲染器进程完成。这几乎消除了通过http提交表单帖子等事情的需要。