复制模型的内容
如果存在模型的旧数据,例如,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它比删除主键的值更明确。另请参阅"强制插入或Django 文档中的更新”。
It's much more explicit then removing primary key's value. See also "forcing an insert or update" in Django documentation.
除非您有一个具有继承的复杂模型,否则这应该有效:
对于其他情况,我在此处找到了一个片段< /a>,但没有测试它。
Unless you have a complex model with inheritance, this should work:
For the other case I found a snippet here, did not test it however.