将参数作为完整对象插入数据库?

发布于 2024-09-19 04:06:46 字数 212 浏览 5 评论 0原文

un Rails 当所有表单字段名称与模型字段名称相同时,我可以简单地使用一个命令将参数插入数据库。这在 django 中也可能吗,还是我必须单独设置每个参数。我有大约 20 个字段,所以有点乱..:)

类似于:

blah = Contact()
blah.content = params[]
blah.save()

谢谢!

un rails i can simply insert the params into the database with one command, when all form-field names are the same like the model-field names. is this possible in django as well, or do i have to set each param individually. i have like 20 fields, so it's a bit of a mess.. :)

something like:

blah = Contact()
blah.content = params[]
blah.save()

thanks!

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

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

发布评论

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

评论(1

演出会有结束 2024-09-26 04:06:46

好吧,如果您使用表单,则应该使用 ModelForm,这样您就可以执行 form.save()

但通常,您可以使用 **kwargs 格式从参数字典实例化对象:

blah = Contact(**params)

Well, if you're using a form, you should use a ModelForm, so you can do form.save().

But generally, you can instantiate an object from a dictionary of parameters using the **kwargs format:

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