django中批量删除数据的方法
程序员文章站
2022-06-03 07:58:14
...
class TaskDeleteSelectView(View):
def post(self, request):
if not request.user.is_authenticated:
# 判断用户登录状态
return HttpResponse('{"status":"fail", "msg":"用户未登录"}', content_type='application/json')
array = request.POST.getlist('ids') # django接收数组
idstring = ','.join(array)
try:
Tasklist.objects.extra(where=['id IN (' + idstring + ')']).delete()
except:
return HttpResponse('{"status":"fail", "msg":"ID不存在"}', content_type='application/json')
return HttpResponse('{"status":"success", "msg":"操作成功"}', content_type='application/json')
上一篇: 达梦数据库基础-----统计信息
下一篇: PHP 中文处理