我是一个尝试创建简单应用的Flask新手。我目前停留在用户注册,我正试图在数据库中保存数据,但它没有发生。但是,我正在进行的日志记录表明操作是成功的。有人能告诉我我做错了吗?
以下部分代码可以帮助您了解我正在尝试做的事情:
from flask import Flask, request, session, g, redirect, url_for, abort, render_template, flash
from flask.ext.mysqldb import MySQL
# Configuration
MYSQL_HOST = 'localhost'
MYSQL_USER = 'root'
MYSQL_PASSWORD = 'root'
MYSQL_DB = 'up2date'
DEBUG = True
SECRET_KEY =
'\xc6)\x0f\\\xc5\x86*\xd7[\x92\x89[\x95\xcfD\xfd\xc1\x18\x8e\xf1P\xf7_\r'
# Create the flask app
app = Flask(__name__)
app.config.from_object(__name__)
# Create instance for working with MySQL
mysql = MySQL(app)
# Function to connect to DB
def connect_db():
return mysql.connection.cursor()
# define functions that will make DB available automatically on each request
@app.before_request
def before_request():
g.db = connect_db()
@app.teardown_request
def teardown_request(exception):
g.db.close()
最后,执行用户注册的代码:
@app.route('/register', methods=['GET', 'POST'])
def register():
if request.method == 'POST':
email = request.form['email']
password = request.form['password']
result = g.db.execute('INSERT INTO users (email, password) VALUES (%s, %s)', [email, password])
print(email, password)
print(result, " rows affected")
flash('Registration successful! You may log in now.')
return redirect(url_for('show_home'))
两个print
语句确认已正确捕获电子邮件地址和密码,result
变量包含1
,表示受影响的一行。但是数据库中仍然没有行。我之前认为这与提交有关,但g.db.commit()
抛出错误: AttributeError:'Cursor'对象没有属性'commit'
答案 0 :(得分:2)
我假设您使用 MySQL-python 。
connect_db()
返回游标,而不是连接。光标没有commit()
函数,如异常所示,但是连接具有您需要的提交功能。我想你需要这样做:
def connect_db():
return mysql.connection
有关详细信息,请查看code。