我有db.model之类的:
class UserProfile(db.Model):
__tablename__ = 'UserProfile'
nickname = db.Column(db.String(40), primary_key=True)
wm = db.Column(db.Boolean)
def __init__(self,name):
self.nickname = name
self.wm = 1
def __repr__(self):
return '<UserProfile {nickname}>'.format(username=self.nickname)
在用户登录期间 - 我正在尝试从db中检索记录 并将其值存储在会话变量中 -
userprofile = UserProfile(form.username.data)
userprofile = UserProfile.query.filter_by(nickname=form.username.data).first()
session['wm']=userprofile.wm
但它失败的消息如:
session['wm']=userprofile.wm
AttributeError: 'NoneType' object has no attribute 'wm'
Mysql db:
mysql> desc UserProfile;
+------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------+-------------+------+-----+---------+-------+
| nickname | varchar(40) | NO | PRI | NULL | |
| wm | tinyint(1) | YES | | NULL | |
它也有记录。
感谢您的帮助。
答案 0 :(得分:4)
您需要首先将<{1}}新对象添加到数据库中:
UserProfile
请参阅Flask-SQLAlchemy documentation on insertion:
在将对象添加到会话之前,SQLAlchemy基本上不打算将其添加到事务中。这很好,因为您仍然可以放弃更改。例如,考虑在页面上创建帖子,但您只想将帖子传递给模板进行预览渲染,而不是将其存储在数据库中。
userprofile = UserProfile(form.username.data) db.session.add(userprofile)
函数调用然后添加对象。