使用电子,如何获取HTML输入并使用它创建python变量?

时间:2019-12-22 01:41:34

标签: javascript python html node.js electron

我有一个基于HTML的GUI,其中包含多种形式和按钮。当用户在输入字段中键入内容并单击“提交”按钮时,它应该在python脚本中更新python变量。下面是来自我的index.html文件的。为了使这项工作有效,我的其他代码(JS和python)需要什么样?我正在使用电子和node.js。

INDEX.HTML

<form class = formtitle>
  Input Delay: <input id = "inpDelay" type="text" name="InputDelay"><br><br>
  <div style = 'position: fixed; bottom: 15px;' class="ui container">
    <input id = "addTaskButton" class = 'ui circular grey huge button' type="button" value="Submit">
  </div>
</form>

0 个答案:

没有答案