使用flask在sqlalchemy中查询多对多关系时出错

时间:2016-09-28 14:06:17

标签: python flask sqlalchemy flask-sqlalchemy

我有两个模型CoreDrive和GamificationTechnique以及一个生成多对多关系的表。我正在尝试在表cores_techiques中进行简单查询,但总是得到错误。

AttributeError:'Table'对象没有属性'query'。

我正在使用python3,flask和sqlalchemy。我是初学者,我正在尝试用这个应用程序学习烧瓶。

模型

#many_CoreDrive_has_many_GamificationTechnique
cores_techiques = db.Table('cores_techiques',
db.Column('core_drive_id', db.Integer, db.ForeignKey('core_drive.id')),
db.Column('gamification_technique_id', db.Integer, db.ForeignKey('gamification_technique.id')))

class CoreDrive(db.Model):
id = db.Column(db.Integer(), primary_key=True)
name_core_drive = db.Column(db.String(80), unique=True)
description_core_drive = db.Column(db.String(255))
techniques = db.relationship('GamificationTechnique', secondary=cores_techiques,
   backref=db.backref('core_drives', lazy='dynamic'))

class GamificationTechnique(db.Model):
id = db.Column(db.Integer(), primary_key=True)
name_gamification_technique = db.Column(db.String(80), unique=True)
description_gamification_technique = db.Column(db.String(255))
number_gamification_technique = db.Column(db.Integer())
attributtes = db.relationship('Atributte', secondary=techniques_atributtes,
   backref=db.backref('gamification_techniques', lazy='dynamic'))

路线

@app.route('/profile')
def profile():
my_core_techique = cores_techiques.query.all()
my_user = User.query.first()
my_technique = GamificationTechnique.query.all()
return render_template('profile.html',my_user=my_user,my_technique=my_technique, my_core_techique=my_core_techique)

1 个答案:

答案 0 :(得分:0)

您可以列出所有CoreDriver,每个对象都有一个GamificationTechnique

列表
cores = CoreDrivers.query.all()
for core in cores:
    print core.techniques

考虑到这一点,您只能将列表cores用于页面