将参数作为完整对象插入数据库?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,如果您使用表单,则应该使用 ModelForm,这样您就可以执行
form.save()
。但通常,您可以使用
**kwargs
格式从参数字典实例化对象: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: