Flask发布到同一页面

时间:2016-05-13 13:51:11

标签: python html flask

我有:

 from flask import Flask, render_template
import datetime
app = Flask(__name__)

@app.route("/")
def hello():
   now = datetime.datetime.now()
   timeString = now.strftime("%Y-%m-%d %H:%M")
   templateData = {
  'title' : 'HELLO!',
  'time': timeString
  }
 return render_template('main.html', **templateData)

if __name__ == "__main__":
app.run(host='0.0.0.0', port=80, debug=True)

和html:

<!DOCTYPE html>
 <head>
    <title>{{ title }}</title>
</head>
   <body>
  <h1>Hello, World!</h1>
  <h2>The date and time on the server is: {{ time }}</h2>
  </body>
</html>

可以在烧瓶上创建一个按钮,在同一页面上的烧瓶功能中发布吗? 感谢

1 个答案:

答案 0 :(得分:2)

所以你的表单代码看起来像这样(这只是一个例子):

<form method='POST' action="/">
        <p>username: <input type="text" name="username"/></p>
        <p>password: <input type="password" name='password'/></p>
        <p><input type="submit" value="Login" style="width: 100px; height: 100px;"/></p>
    </form>

<强>行动=&#34; ...&#34;应该是您要发布到的路径。 所以,如果我们想发布到&#34; /&#34;路径我们可以执行上述操作并使用以下代码在代码中捕获它:

@app.route('/', methods=['GET', 'POST'])
def hello():
   if request.method == 'POST':
       .... # Add whatever code you want to execute if it is a post request

   now = datetime.datetime.now()
   timeString = now.strftime("%Y-%m-%d %H:%M")
   templateData = {
  'title' : 'HELLO!',
  'time': timeString
  }
 return render_template('main.html', **templateData)

我们需要更改app.route部分,因为我们必须指定我们可以通过Get请求或Post请求到达此路由。我们可以使用检查是否为发布请求,如果request.method ==&#39; POST&#39;:

希望这有帮助。