次のようなレコードを含む Schedule クラスを作成しようとしています: ... セッション、ベース、エンジンの宣言はここのどこかに...
class Schedule(Base):
__tablename__ = 'schedule'
id = Column(Integer, primary_key=True)
# and here i need ref to Station class
station_id = Column(Integer, ForeignKey('station.id'))
station = relationship('Station') # Also tried Station
arr_time = Column(Time)
def __init__(self, station_name, arrive_time):
self.metadata.create_all()
self.arrive_time = arrive_time
# And now I'm trying to find station object by a given name
# and add ref to it in self.station.
# The selection of a station works properly here:
station = session.query(Station).filter(Station.name == station_name).first()
# But on this statement I get an error: None object has no method 'append'
self.station.append(station)
session.add(self)
session.commit()
その後、クラス「ステーション」を実装します
class Station(Base):
__tablename__ = 'stations'
id = Column(Integer, primary_key=True)
name = Column(String)
def __init__(self, name):
self.name = name
そのため、新しいスケジュール レコードを追加しようとすると、エラーが発生します。
AttributeError: 'NoneType' object has no attribute 'append'
1 対多の場合 (最初のクラスに外部キーがあり、2 番目のクラスにリレーションシップがある場合) は正しく機能します。
コードの何が問題になっていますか?
更新: ドキュメントからの例も試しました:
engine = create_engine('sqlite:///:memory:')
Base = declarative_base(engine)
session = sessionmaker(bind=engine)()
class Parent(Base):
__tablename__ = 'parent'
id = Column(Integer, primary_key=True)
child_id = Column(Integer, ForeignKey('child.id'))
child = relationship("Child")
class Child(Base):
__tablename__ = 'child'
id = Column(Integer, primary_key=True)
if __name__ == '__main__':
Base.metadata.create_all()
parent = Parent()
session.add(parent)
child = Child()
session.add(child)
print(hasattr(Parent, 'child'))
print(hasattr(parent, 'child'))
print(type(Parent.child))
print(type(parent.child))
私は得る:
>>> True
>>> True
>>> <class 'sqlalchemy.orm.attributes.InstrumentedAttribute'>
>>> <class 'NoneType'>