复制模型的内容

发布于 2024-08-28 11:45:29 字数 172 浏览 8 评论 0原文

如果存在模型的旧数据,例如,

query=Emp.objects.filter(pk=profile.id)

是否有更简单的方法将相同的值再次复制到同一模型中..

现在id会不同,所以..

我有这个要求。

谢谢..

If there exists an old data of a model say ,

query=Emp.objects.filter(pk=profile.id)

Is there a easier way to copy the same values into the same model again..

Now that the id will be different so..

I have this requirement.

Thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

極樂鬼 2024-09-04 11:45:29
object = Emp.objects.get(pk=profile.id)
object.save(force_insert=True)

它比删除主键的值更明确。另请参阅"强制插入或Django 文档中的更新”

object = Emp.objects.get(pk=profile.id)
object.save(force_insert=True)

It's much more explicit then removing primary key's value. See also "forcing an insert or update" in Django documentation.

萌化 2024-09-04 11:45:29

除非您有一个具有继承的复杂模型,否则这应该有效:

query.pk = None
query.save() #Will insert new record

对于其他情况,我在此处找到了一个片段< /a>,但没有测试它。

Unless you have a complex model with inheritance, this should work:

query.pk = None
query.save() #Will insert new record

For the other case I found a snippet here, did not test it however.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文