小编典典

在html文件中调用python函数

python

当在html页面中单击某个链接时,是否可以调用python函数?

谢谢


阅读 341

收藏
2020-12-20

共1个答案

小编典典

您将需要使用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

2020-12-20