peewee 对象clone函数

Posted woshiaotian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了peewee 对象clone函数相关的知识,希望对你有一定的参考价值。

起因:
我需要得到peewee对象的clone对象,写个简单的小程序

def clone(instance):
    obj = instance.__class__()
    # print a._meta.fields
    data = getattr(instance, "_data")
    for key in a._meta.fields:
    # print key
        if key != 'id':
            setattr(obj, key, data[key])
    return obj

以上是关于peewee 对象clone函数的主要内容,如果未能解决你的问题,请参考以下文章

如何在 peewee 中预取?

Flask peewee AttributeError:“ModelSelect”对象没有属性“_meta”

Peewee 可以使用 SQLite 的 FTS5(全文搜索)辅助函数 highlight() 吗?

EXAMPLE FOR PEEWEE 多姿势使用 PEEWEE

Python ORM框架之 Peewee入门

Java 中的 clone( ) 和 new,哪个效率更高?