您将需要使用Web框架将请求路由到Python,因为您不能仅使用HTML来做到这一点。Flask是一个简单的框架:
server.py :
from flask import Flask, render_templateapp = 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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)