我有一个关于在 python 烧瓶中执行的问题

时间:2021-06-03 11:19:34

标签: python mysql flask

我是构建 python api 的新手。我想根据日期获取数据。

https://programminghistorian.org/en/lessons/creating-apis-with-python-and-flask#what-is-an-api

我正在点击此链接来编写我的 api,但我不知道我可以在执行中做什么。

这是我的python代码:

# -*- coding: utf-8 -*-
from flask import Flask, render_template, request
from flask_mysqldb import MySQL

app = Flask(__name__)
app.config["DEBUG"] = True

app.config['MYSQL_HOST'] = 'localhost'
app.config['MYSQL_USER'] = 'root'
app.config['MYSQL_PASSWORD'] = 'root'
app.config['MYSQL_DB'] = 'MyDB'
app.config['MYSQL_charset'] ='utf8'

mysql = MySQL(app)

@app.route('/',methods = ['GET','POST'])
def index():
    if request.method == "POST":
        details = request.form
        firstday = details['firstday']
        lastday = details['lastday']
        cur = mysql.connection.cursor()
        cur.execute("select * from transaction join transaction_item on transaction.id = transaction_item.transaction_id join customer on customer.id = transaction.customer_id where transaction_datetime <= lastday and transaction_datetime >= firstday VALUES (%s, %s)", (firstday, lastday))
        mysql.connection.commit()
        cur.close()
        return 'success'
    return render_template('index.html')


if __name__ == '__main__':
    app.run()

这是我的 HTML 代码:

<HTML>
    <BODY bgcolor="cyan">
    <form method="POST" action="">
        <center>
        <H1>Enter your details </H1> <br>
        first_transaction_datetime <input type = "text" name= "firstday" /> <br>
        last_transaction_datetime <input type = "text" name= "lastday" /> <br>
        <input type = "submit">
        </center>
    </form>
    </BODY>
</HTML>

1 个答案:

答案 0 :(得分:1)

当您向后端发送请求时,它不会填写表单,一个简单的方法是在 URL 中添加查询值

http://127.0.0.1:5000/?firstName=<firstName>&lastName=<lastName>

那么您的 Python 代码将如下所示。

@app.route('/',methods = ['GET','POST'])
def index():
    firstName = request.args.get('firstName')
    lastName = request.args.get('lastName')
    if request.method == "POST":
        # Do stuff here