如何在我的RoleUser链接表中告诉flask-admin对外键字段使用替代表示形式,例如以下内容?
最简单的方法是向模型添加__str__方法(__unicode__对于Python 2)。
__str__
__unicode__
class Role(db.Model): # snip def __str__(self): return self.name