1 回答
TA贡献1865条经验 获得超7个赞
在__repr__导航日志文件和堆栈跟踪时,对复杂对象具有良好功能可能非常有用,因此您尝试为它提出一个好的模式真是太好了。
我喜欢有一个默认的小助手(在我的例子中,BaseModel 被设置为model_class初始化flask-sqlalchemy时)。
import typing
import sqlalchemy as sa
class BaseModel(Model):
def __repr__(self) -> str:
return self._repr(id=self.id)
def _repr(self, **fields: typing.Dict[str, typing.Any]) -> str:
'''
Helper for __repr__
'''
field_strings = []
at_least_one_attached_attribute = False
for key, field in fields.items():
try:
field_strings.append(f'{key}={field!r}')
except sa.orm.exc.DetachedInstanceError:
field_strings.append(f'{key}=DetachedInstanceError')
else:
at_least_one_attached_attribute = True
if at_least_one_attached_attribute:
return f"<{self.__class__.__name__}({','.join(field_strings)})>"
return f"<{self.__class__.__name__} {id(self)}>"
现在你可以让你的__repr__方法保持整洁:
class MyModel(db.Model):
def __repr__(self):
# easy to override, and it'll honor __repr__ in foreign relationships
return self._repr(id=self.id,
user=self.user,
blah=self.blah)
应该产生类似的东西:
<MyModel(id=1829,user=<User(id=21, email='foo@bar.com')>,blah='hi')>
添加回答
举报