How do I get multiple values from checkboxes in Dj

2019-01-16 06:40发布

I want to get values of a multiple select check box using request.POST['xzy'] as a list. Here is my model and template code.

My Model

class Recommend(models.Model):
  user=models.ForeignKey(User)
  book=models.ForeignKey(BookModel)
  friends=models.ManyToManyField(User, related_name="recommended")

My Template

{% for friend in friends %}

<input type="checkbox" name="recommendations" id="option{{friend.id}}" value={{friend.username}} />
<label for="option{{friend.id}}"><b>{{friend.username}}</b></label><br />

{% endfor %}

My View code

if request.method == 'POST': 
  recommendations=request.POST['recommendations']

Here I want 'recommendations' to be a list containing all friend ids but here it is just getting overwritten and only contains the value that got assigned in the last for loop iteration. How can I solve this problem. Need help desperately. Thank You.

2条回答
男人必须洒脱
2楼-- · 2019-01-16 07:14
request.POST.getlist('recommendations')
查看更多
太酷不给撩
3楼-- · 2019-01-16 07:14
if not request.POST.has_key(strName):
      return ""    
  if request.POST[strName]:
      return ','.join(request.POST.getlist(strName))          
  else:
      return ""
查看更多
登录 后发表回答