我想使用 python、html 和 javascript 构建一个桌面应用程序。到目前为止,我已经按照烧瓶上的 tuts 并有一个 hello world 工作示例。我现在应该怎么做才能让它工作?html 文件如何与它们下面的 python 脚本“对话”?
到目前为止,这是我的代码:
from flask import Flask, url_for, render_template, redirect
app = Flask(__name__)
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html', name=name)
@app.route('/')
def index():
return redirect(url_for('init'))
@app.route('/init/')
def init():
css = url_for('static', filename='zaab.css')
return render_template('init.html', csse=css)
if __name__ == '__main__':
app.run()