2017-05-10 60 views
0

我有一個由id(整數)標識的區域列表。 如何獲取生成發佈請求的區域?Django - 從POST請求中取值

manual.html

{% if zone_list %} 
    <ul> 
     {% for z in zone_list %} 
      <b><p>{{z.name}}</p></b> 
      <form action="" method="post"> 
       {% csrf_token %} 
       <input type="submit" name="{{z.id}}" value="ON"/> 
       <input type="submit" name="{{z.id}}" value="OFF"/><br> 
       <br> 
       <label>Tiempo</label>: 
       <input type="integerfield" name="Tiempo"> 
       <input type="submit" name="{{z.id}}" value="Start"> 
      </form> 
     {% endfor %} 
    </ul> 
{% endif %} 

在views.py我不得不改變1東西,動態地代表區

views.py

def manual(request): 
    if request.POST.has_key('1'): 
     z = Zone.objects.get(id = 1) 
     keyword = request.POST.get("1","") 
     if keyword == "ON": 
      #do something 
     if keyword == "OFF": 
      #do something 
     if keyword == "Start": 
      #do something 
    zone_list = Zone.objects.all() 
    context = {'zone_list':zone_list} 
    return render(request, 'irrigation_controller/manual.html', context) 
+0

用於單個區域中創建一個[的ModelForm](https://docs.djangoproject.com/en/1.11/topics/forms/modelforms/),然後用[ modelformset](https://docs.djangoproject.com/en/1.11/topics/forms/modelforms/#model-formsets)創建一組表單。然後你可以在你的視圖中迭代這個表單並逐個獲取值 – Taranjeet

+0

或者你可以添加一個隱藏的輸入字段,其中包含區域的ID,然後將其從'request.POST'中取出。 – themanatuf

+0

@themanatuf感謝您的幫助,我使用隱藏的輸入字段解決了問題 –

回答

0

我解決了這個問題。正如manatuf所說,我在zone_id中使用了一個隱藏的輸入字段。

manual.html

{% if zone_list %} 
    {% for z in zone_list %} 
     <b><p>{{z.name}}</p></b> 
     <form action="" method="post"> 
      {% csrf_token %} 
      <input type="hidden" name="zone_id" value="{{z.id}}"> 
      <input type="submit" name="order" value="ON"/> 
      <input type="submit" name="order" value="OFF"/><br> 
      <br> 
      <label>Tiempo</label>: 
      <input type="integerfield" name="Tiempo"> 
      <input type="submit" name="order" value="Start"> 
     </form> 
    {% endfor %} 
{% endif %} 

並在視圖我讀了zone_id和秩序。

views.py

def manual(request): 
if request.POST.has_key('zone_id'): 
    z = Zone.objects.get(id = request.POST.get("zone_id","")) 
    keyword = request.POST.get("order","") 
    if keyword == "ON": 
     z.irrigation_on() 
    if keyword == "OFF": 
     z.irrigation_off() 
    if keyword == "Start": 
     tiempo = request.POST['Tiempo'] 
     tiempo = float(tiempo) 
     irrigation_time.delay(z.id, tiempo) 
zone_list = Zone.objects.all() 
context = {'zone_list':zone_list} 
return render(request, 'irrigation_controller/manual.html', context)