Django + RestFramework

代码:

class LogViewSet(viewsets.GenericViewSet,mixins.CreateModelMixin,mixins.ListModelMixin,mixins.RetrieveModelMixin,mixins.UpdateModelMixin,mixins.DestroyModelMixin):queryset = Log.objects.all()permission_classes = IsAuthenticatedserializer_class = LogSerializer

报错:

修改:

class LogViewSet(viewsets.GenericViewSet,mixins.CreateModelMixin,mixins.ListModelMixin,mixins.RetrieveModelMixin,mixins.UpdateModelMixin,mixins.DestroyModelMixin):queryset = Log.objects.all()permission_classes = [IsAuthenticated]serializer_class = LogSerializer

TypeError: ‘BasePermissionMetaclass‘ object is not iterable相关推荐

  1. Python+selenium自动化测试:报错:TypeError: 'WebElement' object is not iterable

    代码: # -*- coding: utf-8 -*-from selenium import webdriverfrom selenium.webdriver.common.by import By ...

  2. python nonetype_【已解决】Python程序错误:TypeError: ‘NoneType’ object is not iterable

    [问题] 如下代码:def callBlogFunc(funcToCall, *paraList): funcName = funcToCall.func_name; if(blogIsNetease ...

  3. 成功解决TypeError int object is not iterable

    成功解决TypeError: 'int' object is not iterable 目录 解决问题 解决思路 解决方法 解决问题 TypeError: 'int' object is not it ...

  4. Python报错TypeError: ‘User‘ object is not iterable

    Python报错TypeError: 'User' object is not iterable 原因 User对象是不可迭代的,我这里是因为User并不是list,所以是不可迭代的,所以不使用迭代即 ...

  5. 【Python】处理 TypeError: ‘FirefoxWebElement‘ object is not iterable

    编写下面的代码: from selenium import webdriverdriver = webdriver.Firefox() driver.maximize_window() driver. ...

  6. TypeError: 'float' object is not iterable

    求心率的peason相关系数的时候遇到这个问题: TypeError: 'float' object is not iterable 解决方法: pre_label.extend(output) ty ...

  7. python常见错误 TypeError: 'NoneType' object is not iterable

    TypeError: 'NoneType' object is not iterable 1. 将None赋给多个值时,会出现提示:TypeError: 'NoneType' object is no ...

  8. 个人报错TypeError: ‘type‘ object is not iterable

    django报错 'type' object is not iterable,个人报错原因解析 E:\django_project\my_blog\article\models.py changed, ...

  9. python 多进程multiprocessing进程池pool tensorflow-yolov3 报错TypeError: 'ApplyResult' object is not iterable

    首先,代码结构它长这样: 可每次调用线程池进行识别时,就会报如下错误: D:\20191031_tensorflow_yolov3\python\python.exe D:/20191031_tens ...

最新文章

  1. java web乱码问题_如何解决JavaWeb乱码问题
  2. pku 1691 Painting A Board DFS 抽象建图 + 拓扑排序
  3. 局域网内其他电脑通过SSH访问NAT模式下的虚拟机
  4. 不定高度的弹框 垂直水平居中
  5. 全球及中国甲醇催化剂行业前景动态与市场需求调研报告2022版
  6. php 将查询出的数组数据存入redis
  7. HashMap can be replaced with SparseArray--Android应用性能优化之使用SparseArray替代HashMap
  8. Linux安装MariaDB(Mysql)和简单配置
  9. java正则表达式非贪婪_正则表达式中的贪婪与非贪婪匹配模式
  10. 小鹏汽车拟挂牌港交所 披露了一些有意思的数据
  11. 表单提交_django 的ajax提交与表单提交记录
  12. CodeForces405B - Jzzhu and Sequences 矩阵快速幂
  13. 使用 Sublime开发 Jade
  14. 图像匹配 | 论文与方法整理
  15. Excel如何快速筛选?
  16. 7.2 Flowable 背压
  17. 爬虫时候遇到python connection error max retries exceeded whith url 怎么解决?
  18. C语言入门知识1(零基础新手适用)
  19. 02-学习笔记(webstorm设置代码自动缩进量)【新手上路,多多关照】
  20. 电工学复习【2】-- 电路的分析方法

热门文章

  1. Java面向对象概述
  2. nodeJs配置相关以及JSON.parse
  3. ●(考试失误导致的)倍增总结
  4. QInputDialog Multiple Inputs 输入多个变量的对话框
  5. LogBack配置详解(一)
  6. PowerPoint Storyboarding:Visual Studio 2012 RC带给开发者的秘密杀器
  7. mybatis 取list第一个_Mybatis(五)- 多对一
  8. java实现modbustcp通讯_Modbus TCP双通道冗余技术
  9. Java黑皮书课后题第5章:5.4(将英里转换成千米)编写程序,显示下面的表格(注意:1英里为1.609千米)
  10. 关于服务器的入门知识整理