开发者

How do you execute a server-side Python script using jQuery?

开发者 https://www.devze.com 2022-12-19 18:10 出处:网络
I have a very simple Python file, called python1.py, whose contents are: f = open(\'C:\\\\Temp\\\\test.txt\', \'w\')

I have a very simple Python file, called python1.py, whose contents are:

f = open('C:\\Temp\\test.txt', 'w')
f.write('Succeeded')
f.close()

I wish to execute this from JavaScript, like so:

jQuery.ajax({
   type: "POST",
   url: "/cgi-bin/python1.py",
   success: function (msg) {
       alert("Data Saved: " + msg);
   }
});

However, all that happens is that I get an alert showing me the contents of the Python script. The file C:\Temp\test.txt does not get created, so clearly the Python was not executed.

开发者_如何学编程

How do I persuade the code to execute the Python script instead of just reading it?


You simply need to configure your web server to execute your *.py scripts, instead of serving them as plain text.

If you are using Apache as a web server, you need to enable mod_python or mod_wsgi.


EDIT:

Since you are using using Apache, you may want to check the following article, which briefly describes how to set up the mod_python module:

  • A Brief Introduction to Apache's mod_python Module


You could also use the opensource project Pico. It's a really elegant way of calling server side Python code from client side Javascript.

The author has provided some simple examples here https://github.com/fergalwalsh/pico/wiki/Example-1:-Hello-World


Are you able to execute the script directly from the browser. This looks more like a webserver config issue than jquery's


If your script is that simple, you would be best off using CGI on the server side rather than mod_python or mod_wsgi as suggested by others. For details on how to set up Apache for CGI with Python and simple script examples see:

http://webpython.codepoint.net/cgi_tutorial

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号