Django modelforms 外部提供的字段

发布于 2024-11-08 23:54:33 字数 418 浏览 0 评论 0原文

我创建了一个包含五个字段的模型表单。

用户提交包含其中四个字段的 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 技术交流群。

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

发布评论

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

评论(2

心碎的声音 2024-11-15 23:54:33
def create_profile(request):
    variable = variable
    if request.method == 'POST':
        form = ProfileForm(request.POST)
        if form.is_valid():
            profile = form.save(commit=False)
            profile.variable = variable
            profile.save()
            return redirect('/')
def create_profile(request):
    variable = variable
    if request.method == 'POST':
        form = ProfileForm(request.POST)
        if form.is_valid():
            profile = form.save(commit=False)
            profile.variable = variable
            profile.save()
            return redirect('/')
尐偏执 2024-11-15 23:54:33
instance = form.save(commit=False) 
instance.attribute = variable 
instance.save() 
instance = form.save(commit=False) 
instance.attribute = variable 
instance.save() 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文