我嘗試後在Django輸入按鈕的價值,但我不能 這是我的模板Django的模板輸入按鈕後問題
<form id="ReviewRateForm" method="post" action="/review/post/rate/">
<input type="button" hint="V1" title="V" value="1" id="radio{{ forloop.counter }}-1" type="button" name="qid[{{forloop.counter}}]"></input>
<input type="button" hint="V1" title="V" value="2" id="radio{{ forloop.counter }}-1" type="button" name="qid[{{forloop.counter}}]"></input>
<input type="button" hint="V1" title="V" value="1" id="radio{{ forloop.counter }}-1" type="button" name="qid[{{forloop.counter}}]"></input>
</form>
然而,當我調試它,我無法達到的值在我的視圖中輸入按鈕。
什麼問題或我該如何克服它?
您如何訪問您視圖中的值?你有沒有嘗試訪問['request.POST'](https://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpRequest.POST)? –
...並且,爲什麼你在'for for'塊之外使用'{{forloop.counter}}?如果你確實有一個包含粘貼代碼的'for'塊,你將最終得到所有具有相同'name'和'id'的3個輸入。你究竟想要做什麼? –
@Shawn - 我同意。我不確定什麼是o.p.正試圖在這裏做。 – Brandon