我有脚本,它在CGIHTTPServer
下运行。
脚本包含:
$ cat cgi-bin/mysql.py
#!/usr/bin/env python
print "Content-Type: text/html"
print
print """
<html>
<body>
<h2>Test</h2>
<button type="button">Get version</button>
</body>
</html>
"""
和功能(在其他脚本或此中):
def myver(host, user, pwd, cmd):
db = MySQLdb.connect(host, user, pwd)
cursor = db.cursor()
cursor.execute(cmd)
data = cursor.fetchone()
print "Database version : %s " % data
db.close()
myver('localhost', 'username', 'megapass', 'SELECT VERSION()')
如何在同一网页上获得此功能的结果?
HowTo 的链接将是完美的。或者一些例子。
答案 0 :(得分:3)
我认为你可以用jquery和Flask做得更好。
Flask是一个非常容易使用的Python微框架,jQuery是一个使Ajax变得轻而易举的javascript库。
一些代码
from flask import Flask, request
app = Flask(__name__)
@app.route('/')
def main():
return """<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script>
$(document).ready(function(){
$('#btnSend').click(function(){
$.ajax({
type: 'POST',
url: '/process',
success: function(data){
alert(data);
}
});
});
});
</script>
</head>
<body>
<input type="button" id="btnSend" value="process">
</body>
</html>"""
@app.route('/process', methods=['POST'])
def view_do_something():
if request.method == 'POST':
#your database process here
return "OK"
else:
return "NO OK"
if __name__ == '__main__':
app.run()
在浏览器中尝试http:// localhost:5000。
答案 1 :(得分:1)
您可以通过合并两个代码段来完成此操作:
#!/usr/bin/env python
def myver(host, user, pwd, cmd):
db = MySQLdb.connect(host, user, pwd)
cursor = db.cursor()
cursor.execute(cmd)
data = cursor.fetchone()
print "Database version : %s " % data
db.close()
print "Content-Type: text/html"
print
print """
<html>
<body>
<h2>Test</h2>
"""
myver('localhost', 'username', 'megapass', 'SELECT VERSION()')
print """
</body>
</html>
"""
如果您想通过单击按钮来执行此操作,则需要调查AJAX以及比CGI更灵活的内容,例如Flask。
答案 2 :(得分:0)
找到下一个解决方案 - 使用GET
:
$ cat cgi-bin/mysql.py
#!/usr/bin/python
import cgi, MySQLdb
data = None
form = cgi.FieldStorage()
def myver(host, user, pwd, cmd):
db = MySQLdb.connect(host, user, pwd)
cursor = db.cursor()
cursor.execute(cmd)
global data
data = cursor.fetchone()
db.close()
form = cgi.FieldStorage()
print "Content-type:text/html\r\n\r\n"
print "<title>Test to get MySQL version</title>"
print "<h2>MySQL version</h2>"
print '''Get version: <form action="/cgi-bin/mysql.py" method="get">
<input type="submit" name="getvers" value="Get version" />
<input type="submit" name="exit" value="Exit" />
</form>
'''
if "getvers" in form:
myver('localhost', 'username', 'megapass', 'SELECT VERSION()')
print 'Current MySQL version: ' + ''.join(data)
elif "exit" in form:
print 'Exit'
请纠正我,如果有什么不对......但是 - 它有效。
P.S。无法使用POST
方法运行它: - (