简体   繁体   English

Django表单字段不会显示在我的模板中

[英]Django Form Fields won't show in my template

The form field won't show up in the browser. 表单字段不会显示在浏览器中。 There is only the submit button showing up. 仅显示提交按钮。

views.py code: views.py代码:

def vote(request, pk):
    # check if request is post
    if request.method == 'POST':
        # create a form and populate it with data from request
        form = forms.Vote(request.POST)
        if form.is_valid():
            fact = Fact.objects.get(pk=pk)
            fact.votes += int(form.cleaned_data['vote'])
            fact.save()
            return HttpResponseRedirect(reverse(
                'facts:detail',
                args=(pk,)
            ))
    else:
        form = forms.Vote()
    return render(request, 'facts/fact_detail.html', {'form': form})

template(fact_detail.html) code: template(fact_detail.html)代码:

<form method='POST'>
    {% csrf_token %}
    {{ form }}
    <input type="submit" value="vote" />
</form>

Form class(forms.py) code: 表单类(forms.py)代码:

VOTE_CHOICES = [
    (1, 'upvote'),
    (0, 'downvote')
]


class Vote(forms.Form):
    vote = forms.ChoiceField(choices=VOTE_CHOICES,  widget=forms.RadioSelect())

In views.py for the vote method initialize the form variable locally, before passing it as a parameter. views.py中, 表决方法在将其作为参数传递之前,先在本地初始化form变量。

def vote(request, pk):
     form=""
    //rest of the code//
       return render(request, 'facts/fact_detail.html', {'form': form})

我建议从Django文档中检查通用编辑视图,我认为它具有解决方案[ https://docs.djangoproject.com/en/1.11/ref/class-based-views/generic-editing/#createview][1]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM