数据库
首页 > 数据库> > AttributeError: 'SQLAlchemy' object has no attribute 'Foreignkey'

AttributeError: 'SQLAlchemy' object has no attribute 'Foreignkey'

作者:互联网

在学习《Flask Web开发----基于Python的Web应用开发实战》的过程中,调试程序,如下图,运行报错:

AttributeError: 'SQLAlchemy' object has no attribute 'Foreignkey'

 

原因:是关键字Foreignkey里的字母k应该是大写,错写成小写字母了

解决办法,改成ForeignKey即可

role_id = db.Column(db.Integer, db.ForeignKey('roles.id'))


 

标签:Web,SQLAlchemy,Foreignkey,attribute,no,db,id
来源: https://www.cnblogs.com/SH170706/p/11642793.html