Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查模型字段是否在抽象模型中?
我想编写一个自定义 model_to_dict 函数,它只给出抽象模型的字段而不是相关模型。
所以我想排除不在抽象模型中的每个字段,这可能吗?
你可以试试
hasattr(AbstrctModel, 'attr_name1')
如果它返回,True那么它在模型中。
True