Django:将值从模板传递到查看

时间:2015-04-28 13:34:51

标签: django django-forms django-views streaming httpresponse

我遇到这种情况:

点击html提交按钮,我致电views.stream_response,其中"激活" views.stream_response_generator"激活" stream.py 并返回 StreamingHttpResponse ,我会在m /stream_response/处每隔一秒看到一个渐进式数字:

1
2
3
4
5
6
7
8  //e.g. my default max value for m

stream.py

from django.template import Context, Template
import time         


def streamx(m):
    lista = []
    x=0
    while len(lista) < m:      
        x = x + 1
        time.sleep(1)
        lista.append(x)
        yield "<div>%s</div>\n" % x  #prints on browser
        print(lista)     #print on eclipse
    return (x)

views.py

def stream_response(request):   // unified the three functions as suggested

if request.method == 'POST':
    form = InputNumeroForm(request.POST)
    if form.is_valid():
        m = request.POST.get('numb', 8)
        resp = StreamingHttpResponse(stream.streamx(m))
        return resp

forms.py

from django.db import models
from django import forms
from django.forms import ModelForm

class InputNumero(models.Model):
    m = models.IntegerField()


class  InputNumeroForm(forms.Form):    
    class Meta:
        models = InputNumero
        fields = ('m',)

urls.py

...
url(r'^homepage/provadata/$', views.provadata),    
url(r'^stream_response/$', views.stream_response, name='stream_response'),
...

主页/ provadata.html

<form id="streamform" action="{% url 'stream_response' %}" method="POST">
  {% csrf_token %}
  {{form}}
  <input id="numb" type="number"  />
  <input type="submit" value="to view" id="streambutton" />
</form>

如果我删除&#34; 8&#34;并且仅使用m = request.POST.get('numb')我获得:

  / stream_response上的

ValueError / view homepage.views.stream_response没有返回HttpResponse对象。   它改为返回None。

所以,如果我尝试提交,它只需要默认值8(并且有效)但不需要我的表单输入。这有什么不对?

- &gt;更新:@Tanguy Serrat建议:

views.py

def stream_response(request):
    form = InputNumeroForm()
    if request.method == 'POST':
        form = InputNumeroForm(data=request.POST)
        if form.is_valid():
            #Accessing the data in cleaned_data
            m = form.cleaned_data['numero']

            print("My form html: %s" % form)      
            print ("My Number: %s" % m) #watch your command line
            print("m = ", m) 
            resp = StreamingHttpResponse(stream.streamx(m))
            return resp

    #If not post provide the form here in the template :
    return render(request, 'homepage/provadata.html', {'form': form,})

forms.py

class  InputNumeroForm(forms.Form):
    numero = models.IntegerField()

主页/ provadata.py

<form  action="/stream_response/" method="POST">
    {% csrf_token %}
    {{form}}                                <!--issue: does not appear on the html !!!!!-->
    <input type="number" name="numero" />   <!--so I write this-->
    <input type="submit" value="to view" />
</form>

如果我提供输入,例如7来自键盘:

  

/ stream_response /

处的KeyError      

&#39; NUMERO&#39;   It takes the input number

WHILE

如果我写m = request.POST.get('numero'),在命令行中我有:

...
My form html: 
My Number: 7
m =  7
...
   while len(lista) < m:
   TypeError: unorderable types: int() < str()

3 个答案:

答案 0 :(得分:5)

编辑:删除了ModelForm部分,无需将数据保存在数据库中,因此使用经典表单:

方法1:使用Django的没有模型的经典表单

forms.py

中的

from django import forms

class InputNumeroForm(forms.Form):

    numero = forms.IntegerField()
views.py

中的

from django.shortcuts import render

def stream_response(request):
    form = InputNumeroForm()
    if request.method == 'POST':
        form = InputNumeroForm(data=request.POST)
        if form.is_valid():
            #Accessing the data in cleaned_data
            m = form.cleaned_data['numero']      
            print "My Number %s" % m #watch your command line 
            resp = StreamingHttpResponse(stream.streamx(m))
            return resp

    #If not post provide the form here in the template :
    return render(request, 'homepage/provadata.html', {
        'form': form,
    })

在你的模板中:

<form id="streamform" action="{% url 'stream_response' %}" method="POST">
  {% csrf_token %}
  {{ form }}
  <input type="submit" value="to view" id="streambutton" />
</form>

为了澄清一点,Django中有两种形式:

  • 不需要在数据库中保存的经典表单
  • 模型表单,允许您创建基于数据库模型的表单,即(您可以向数据库添加行或编辑行)

在这里,您不需要在数据库中保存您的号码,因此您可以使用经典表格: https://docs.djangoproject.com/en/1.8/topics/forms/

方法2:不使用Django表单 对于非常简单的表格,例如:

views.py

中的

from django.shortcuts import render

def stream_response(request):
    if request.method == 'POST':
        if request.POST.get('numero', False):
            m = int(request.POST['numero'])      
            print "My Number %s" % m #watch your command line 
            resp = StreamingHttpResponse(stream.streamx(m))
            return resp

    return render(request, 'homepage/provadata.html')

在你的模板中:

<form id="streamform" action="{% url 'stream_response' %}" method="POST">
  {% csrf_token %}
  <input type="number" name="numero" />
  <input type="submit" value="to view" id="streambutton" />
</form>

答案 1 :(得分:0)

Django视图必须返回一个HttpResponse对象。考虑到您引用的其他两个函数每个只有一行,它可以更好地将所有内容放在一个函数中,或者至少将StreamingHttpResponse移动到main函数。

编辑:StreamingResponseHttp必须是可迭代的,所以回到stream.py,尝试取出返回和打印功能(我已经拿出了多余的东西用于实验&#39; s清酒)。这对我来说很有用。

def streamx(m):
    lista = []
    x=0
    while len(lista) < m:      
        x = x + 1
        time.sleep(1)
        lista.append(x)
        yield "<div>%s</div>\n" % x  #prints on browser

        #c = Context({'x': x})
        #yield Template('{{ x }} <br />\n').render(c)  


def stream_response(request):

    if request.method == 'POST':
        form = InputNumeroForm(request.POST)
        if form.is_valid():
            m = request['numb']

            resp = StreamingHttpResponse(streamx(m))
            return resp

答案 2 :(得分:0)

我发现您发布的代码存在一些问题:

您的表单字段缺少“name”属性,因此为此字段设置的值不会传递给您的代码。这就是为什么你的request.POST.get('numb')会返回None,除非你提供默认值(8)。 试试这个:

<input id="numb" name="numb" type="number"  />

此外,我在您的表单中注意到您使用models.IntegerField - 为什么要在此处使用模型字段?

更好的方法可能是将麻木字段添加到表单中,然后从表单的已清理数据中检索值:form.cleaned_data['numb']而不是POST数据。

希望这能帮到你。