如何告诉 flask-admin 在显示外键字段时使用替代表示?

How to tell flask-admin to use alternative representation when displaying Foreign Key Fields?

如何告诉 flask-admin 使用外键字段的替代表示形式,例如此 RoleUser link table 中的以下内容?

最简单的方法是向您的模型添加 __str__ 方法(__unicode__ for Python 2)。

class Role(db.Model):
    # snip
    def __str__(self):
        return self.name