当在html页面中单击某个链接时,是否可以调用python函数?
谢谢
您将需要使用Web框架将请求路由到Python,因为您不能仅使用HTML来做到这一点。Flask是一个简单的框架:
server.py :
from flask import Flask, render_template app = Flask(__name__) @app.route('/') def index(): return render_template('template.html') @app.route('/my-link/') def my_link(): print 'I got clicked!' return 'Click.' if __name__ == '__main__': app.run(debug=True)
templates / template.html :
<!doctype html> <title>Test</title> <meta charset=utf-8> <a href="/my-link/">Click me</a>
使用运行它,python server.py然后导航到http:// localhost:5000 /。开发服务器不安全,因此要部署您的应用程序,请查看http://flask.pocoo.org/docs/0.10/quickstart/#deploying- to-a-web-server
python server.py