- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个像这样的 html 模板:
<table border="1" align="center">
{% for result in result %}
<tr>
<td><input type="checkbox" name="choice" id="choice{{ forloop.counter }}" value="{{ choice }}" /></td>
<td><label for="choice{{ forloop.counter }}">{{ choice }}</label><br /></td>
<td>{{ result.file_name }}</td>
<td>{{ result.type }}</td>
<td>{{ result.size }}</td>
<td>{{ result.end_date }}</td>
<td>{{ result.source }}</td>
{% endfor %}
</tr>
</table>
{{ c }}
<h4><a href="/delete_files/">Delete File</a></h4>
结果变量
生成自:
def uploaded_files(request):
log_id = request.user.id
b = File.objects.filter(users_id=log_id, flag='F') #Get the user id from session .delete() to use delete
return render_to_response('upload.html', {'result': b}, context_instance=RequestContext(request))
这是我尝试从模板的选择中获取值的地方:
def delete_files(request):
log_id = request.user.id
choices = request.POST.getlist('choice') #Get the file name from the as a list
for i in choices:
File.objects.filter(users_id=log_id, file_name=i).update(flag='D')
return render_to_response('upload.html', {'c': choices}, context_instance=RequestContext(request))
最佳答案
在选择后包含 [],因为您正在获取数组表单请求
choices = request.POST.getlist('choice[]')
这将解决您的问题
关于django - request.POST.getlist 在 Django 中返回 None 列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14334318/
我刚刚发布了这个问题 jQuery - passing arrays in post request ,这里我不会在 post 请求中发送数组,但是在 jQuery 代码中没有问题。 问题在于在 dj
我在服务器端有方法: @RequestMapping(method = RequestMethod.GET) public List getAllUsers(@RequestParam(value =
灵感来自this博客文章中,我试图通过将搜索参数保存到 session 中来创建一个处理配置文件搜索的 View ,以便可以通过分页保留查询。 以下是观点: def profile_search(re
HomePage.java Table table = new Table("table"); List list = (List) table.getList(); System.out.p
我对 angular 和 restangular 真的很陌生,也许你能帮我, 为什么这段代码有效 tunariAppApp.controller('ProductListCtrl', func
我正在尝试编写一个使用 hibernate 模式访问数据库的网站。保存我可以正常工作,但是当我尝试在执行 session.createQuery 调用时调用我的 getList 方法时,代码只是落入
我的 Rails API 以这种方式在响应 header 中包含分页数据: X-Pagination {"total":332,"total_pages":12,"first_page":true,"
当客户端未经身份验证时,我正在使用的 API 返回 200 并带有字符串错误消息。所以如果我打电话: var restSvc = Restangular.service('message'); var
当我在我的 angularJs Controller 中使用以下代码时 var baseAccount = Restangular.all('account'); $scope.submit
现在我看到一些开发人员在每个类中使用名为 GetAll 或 Getlist 的函数。这些函数返回其类的列表或实体。 之后,他们像这样使用这些功能: dim k = from t in customer
尝试获取列表时出现以下异常: Exception calling "GetList" with "1" argument(s): "0x80070002" At C:\Scripts\teaCvPro
我尝试加快并行调用两个 API 的代码速度。 第一个是 List A = aService.getListA(); List B = bService.getListB(); 现在我将其更改为并行调用
我似乎没有发现这个特定的错误。 我正在向 django 中的函数发送 POST,当我尝试提取数据时,我在 request.getlist 行上遇到此消息: AttributeError: 'WSGIR
根据我对 restangular docs 的理解, 调用Resource.getList('subElement',{query:param})应该调用/resource/subelement?qu
我想通过 api 上传多个文件,当我打印出 f 时,我可以获得“FileStorage”列表,如下所示:[, , ]但不知怎的,每次我经历 for 循环时,它只返回一项。我查看了文档和类似的问题,但同
我的算法课的第一个作业是我必须创建一个程序,从提供的 csv 文件中读取一系列书名,对它们进行排序,然后打印出来。该作业具有非常具体的参数,其中之一是我必须创建一个静态 List getList(St
我在调用 getList 时遇到此错误: S3TransferManagerSample[1717:48308] listObjects 失败:[Error Domain=com.amazonaws.
我们正在尝试为 Django API 返回一个标题列表,其中标题可以包含一些关键字。 例如,如果我们使用 __icontains 方法来搜索“money”和“world”(api.com/?keywo
出于某种原因,我无法让我 4 周前工作的东西工作:/我有一个网站,我通过 jQuery 添加了一个复选按钮,如果它被选中,我需要 Flask 来读出。我做了一个最小的例子,但它仍然不起作用。 代码如下
我有一个快速的问题我这样使用子句有关系吗: for(Object obj : something.b.c.d.getList(){ ... } 或者这个 List list = something.b
我是一名优秀的程序员,十分优秀!