“房间”类没有“对象”成员
Posted
技术标签:
【中文标题】“房间”类没有“对象”成员【英文标题】:Class "Room" has no "objects" members 【发布时间】:2021-06-10 01:19:28 【问题描述】:我正在用 Django 做一个网络应用程序,但我一直收到这个错误。
这是我的 models.pty 中的代码,我在其中创建类 Room。
from django.db import models
import string
import random
def generate_unique_code():
length = 6
while True:
code = ''.join(random.choices(string.ascii_uppercase, k=length))
if Room.objects.filter(code=code).count() == 0:
break
return code
class Room(models.Model):
code = models.CharField(max_length=8, default="", unique=True)
host = models.CharField(max_length=50, unique=True)
guest_can_pause = models.BooleanField(null=False, default=False)
votes_to_skip = models.IntegerField(null=False, default=1)
created_at = models.DateTimeField(auto_now_add=True)
这是我将房间导入views.py的地方,我在这里也遇到了同样的错误。
from django.shortcuts import render
from rest_framework import generics
from .serializer import RoomSerializer
from .models import Room
class RoomView(generics.CreateAPIView):
queryset = Room.objects.all()
serializer_class = RoomSerializer
我的代码有什么问题?
【问题讨论】:
这能回答你的问题吗? Class has no objects member 【参考方案1】:你需要安装 pylint-django
pip install pylint-django
假设您使用 Visual Studio Code,您需要通过按 ctrl+shift+p
然后转到 Preferences: Configure Language Specific Settings
然后选择 Python
添加此设置
它将打开一个 json 文件。您需要将此代码添加到该文件并保存:
"python.linting.pylintArgs": [
"--load-plugins=pylint_django"
],
"[python]":
重启VS Code应该没问题
基于对此question的答案
【讨论】:
以上是关于“房间”类没有“对象”成员的主要内容,如果未能解决你的问题,请参考以下文章
C++中的派生类,可以不定义对象直接调用基类的成员和调用自己的成员函数嘛???