Как выполнить скрипт Python из электроники с помощью нажатия кнопки? - PullRequest
0 голосов
/ 01 марта 2019

файл try.html: -

<html>
<head>
  <title>Hello World!</title>
</head>
<body>
<input type="button" class="btn" id="processbtn" value="Process" 
 onclick="get_tt()"/>
    <script src="try3.js"></script>
  </body>
</html>

файл try3.js: -

function get_tt() {
document.getElementById("processbtn").value = "Hang on..."
var python=require("python-shell")
var path = require("path")

var options = {
   scriptPath : path.join(__dirname,''),
   pythonPath : 'C:/Users/Lenovo/Anaconda3/python'
}

var f = new python("hello.py",options);
f.end(function(err, code, message) {
document.getElementById("processbtn").value = "Done";
})
}

Код Python не выполняется с использованием этого кода.Значение кнопки меняется на Hang on ... и остается в том же состоянии.

...