我在点击HTML按钮时尝试执行Python脚本。这两个文件都在Node.js服务器上。当我按下按钮时,我在浏览器控制台中收到此消息:
app.js:5 Uncaught ReferenceError: runPython is not defined
我不知道如何编写我的AJAX脚本来调用我的Node web服务器文件上的runPython()函数。以下是我的代码:
的index.html
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.js"> </script>
</head>
<body>
<button id="myButton">Run Python Script</button>
<script src="app.js"></script>
</body>
</html>
app.js
$('#myButton').click(function() {
$.ajax({
url: "",
success: function(data) {
runPython();
},
});
});
webserver.js(node.js)
'use strict';
const http = require('http');
const url = require('url');
const fs = require('fs');
const path = require('path');
let mimes = {
'.htm': 'text/html',
'.css': 'text/css',
'.js': 'text/javascript'
}
//Have ajax call it to execute Python Script
function runPython(){
let exec = require('child_process').exec;
exec('python myscript.py', (error, stdout, stderr) => {
console.log(stdout);
});
}
function fileAccess(filepath) {
return new Promise((resolve, reject) => {
fs.access(filepath, fs.F_OK, error => {
if(!error) {
resolve(filepath);
} else {
reject(error);
}
});
});
}
function streamFile(filepath) {
return new Promise((resolve, reject) => {
let fileStream = fs.createReadStream(filepath);
fileStream.on('open', () => {
resolve(fileStream);
});
fileStream.on('error', error => {
reject(error);
});
});
}
function webserver(req, res) {
// if the route requested is '/', then load 'index.htm' or else
// load the requested file(s)
let baseURI = url.parse(req.url);
let filepath = __dirname + (baseURI.pathname === '/' ? '/index.htm' : baseURI.pathname);
let contentType = mimes[path.extname(filepath)];
fileAccess(filepath)
.then(streamFile)
.then(fileStream => {
res.writeHead(200, {'Content-type': contentType});
//res.end(content, 'utf-8');
fileStream.pipe(res);
})
.catch(error => {
res.writeHead(404);
res.end(JSON.stringify(error));
});
}
http.createServer(webserver).listen(3000, () => {
console.log('Webserver running on port 3000');
});
我应该如何编写AJAX代码以便webserver.js中的函数运行?
答案 0 :(得分:0)
浏览器正在该网址加载脚本。这被视为数据或文本。浏览器通常不会运行Python,因此按照预期的方式运行。
答案 1 :(得分:0)
您需要向服务器发出一个ajax请求,该服务器将运行一些将调用您的python脚本的代码。您错过了该流程的中间部分,只是简单地请求myscript.py
的内容作为文本。
类似的东西:
$('#myButton').click(function() {
$.ajax({
url: "/invoke-script"
});
});
我不熟悉Node,但我想你有某种控制器和执行命令的能力(可能使用https://www.npmjs.com/package/exec-sync)。然后在该控制器中调用python脚本并使用输出执行所需的操作。
答案 2 :(得分:0)
将此脚本视为可执行文件。如果您的URL指向某个* .exe文件,则单击该URL会告知Web浏览器下载该资源。 Python脚本也是如此。 如果你想运行一些python代码,请尝试使用简单的HTTP服务器来处理HTTP请求。这是在HTTP请求上执行某些操作的最常用方法。查看SimpleHTTPServer和BaseHTTPServer的文档。 Here和here您可以找到一些简单服务器实现的代码段。