Django modelforms 外部提供的字段
我创建了一个包含五个字段的模型表单。
用户提交包含其中四个字段的 POST 表单。我如何从外部提供附加字段。这就是我当前正在做的事情:
def create_profile(request):
variable = variable
if request.method == 'POST':
form = ProfileForm(request.POST, additional_field=variable)
if form.is_valid():
form.save()
return redirect('/')
如何将这个 addition_field
包含在 request.POST 数据中以发送到数据库?
I have created a modelform with five fields.
A user submits a POST form with four of those fields. How would I externally supply the additional field. This is what I'm currently doing:
def create_profile(request):
variable = variable
if request.method == 'POST':
form = ProfileForm(request.POST, additional_field=variable)
if form.is_valid():
form.save()
return redirect('/')
How would I include this addition_field
the the request.POST data to send to the database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)