我有一个python脚本,它每2秒更新一次我的output.txt文件。我能够将txt文件数据输出到网页,但由于某种原因,在我重新启动服务器之前它不会更新。我要做的是让网页每2秒更新一次output.txt文件数据。我现在用的是:
var reader = new XMLHttpRequest() || new ActiveXObject('MSXML2.XMLHTTP');
function loadFile() {
reader.open('get', 'output.txt', true);
reader.onready
我有一个关于python和javascript的问题。我喜欢创建一个与javascript网页打交道的文件。
首先,我将创建一个Python文件,它将打开一个本地网页。这个示例localhost/test.html这个页面是一个模板页面。代码是
<html><head><title>An example application</title></head>
<script>
function myFunction()
{
alert("Hello! I am an alert box!");
}
</
我正在尝试使用我在pug中创建的网页运行python脚本,在节点中表示。我更熟悉python而不是节点。使用下面的代码,如何运行python脚本?我包含python shell,但当我单击pug网页上的按钮时,不确定如何运行python脚本。
server.js
// require all dependencies
var express = require('express');
var app = express();
var PythonShell = require('python-shell');
// set up the template e