as_dict
すべてのクラスのメソッドを取得するために、Ants AasmaMixin
によって記述された技術を使用するクラスを使用しました。
class BaseMixin(object):
def as_dict(self):
result = {}
for prop in class_mapper(self.__class__).iterate_properties:
if isinstance(prop, ColumnProperty):
result[prop.key] = getattr(self, prop.key)
return result
そして、あなたのクラスでこのように使用してください
class MyClass(BaseMixin, Base):
pass
これにより、のインスタンスで以下を呼び出すことができますMyClass
。
> myclass = MyClass()
> myclass.as_dict()
お役に立てれば。
私はこれを少しだけ試しましたが、実際には、インスタンスをdict
、関連するオブジェクトへのリンクを持つHALオブジェクトの形式としてレンダリングする必要がありました。そこで、この小さな魔法をここに追加しました。これは、上記と同じクラスのすべてのプロパティをクロールしますが、プロパティをより深くクロールし、これらを自動的にRelaionship
生成するという違いがありlinks
ます。
これは関係が単一の主キーを持つ場合にのみ機能することに注意してください
from sqlalchemy.orm import class_mapper, ColumnProperty
from functools import reduce
def deepgetattr(obj, attr):
"""Recurses through an attribute chain to get the ultimate value."""
return reduce(getattr, attr.split('.'), obj)
class BaseMixin(object):
def as_dict(self):
IgnoreInstrumented = (
InstrumentedList, InstrumentedDict, InstrumentedSet
)
result = {}
for prop in class_mapper(self.__class__).iterate_properties:
if isinstance(getattr(self, prop.key), IgnoreInstrumented):
# All reverse relations are assigned to each related instances
# we don't need to link these, so we skip
continue
if isinstance(prop, ColumnProperty):
# Add simple property to the dictionary with its value
result[prop.key] = getattr(self, prop.key)
if isinstance(prop, RelationshipProperty):
# Construct links relaions
if 'links' not in result:
result['links'] = {}
# Get value using nested class keys
value = (
deepgetattr(
self, prop.key + "." + prop.mapper.primary_key[0].key
)
)
result['links'][prop.key] = {}
result['links'][prop.key]['href'] = (
"/{}/{}".format(prop.key, value)
)
return result
__table__.columns
は、ORM定義で使用した属性名ではなく、SQLフィールド名を提供することに注意してください(2つが異なる場合)。