Django RESTful API错误"类型对象'User'没有属性'_meta' "

时间:2021-10-25 07:29:29

I'm trying to build RESTful API's with django-rest-framework and cassandra, following step by step the official django-rest-framework tutorial at Django-rest-framework I encountered this error

我正在尝试用django rest- rest-framework和cassandra构建RESTful API,在django-res -framework的官方django-res -framework教程中,我遇到了这个错误

Traceback:
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in get_response
132. response = wrapped_callback(request,  *callback_args, **callback_kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/views/decorators/csrf.py" in wrapped_view
58.         return view_func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/views/generic/base.py" in view
  71.             return self.dispatch(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/views.py" in   dispatch
456.             response = self.handle_exception(exc)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/views.py" in   dispatch
444.             self.initial(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/views.py" in    initial
359.         self.check_permissions(request)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/views.py" in check_permissions
304.             if not permission.has_permission(request, self):
File "/usr/local/lib/python2.7/dist-packages/rest_framework/permissions.py" in has_permission
125.         perms = self.get_required_permissions(request.method, queryset.model)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/permissions.py" in get_required_permissions
104.             'app_label': model_cls._meta.app_label,

Exception Type: AttributeError at /users/
Exception Value: type object 'User' has no attribute '_meta'

This is my code

这是我的代码

urls.py

urls . py

from django.conf.urls import  url
from rest_framework.urlpatterns import format_suffix_patterns
from tutorial import views

urlpatterns = [
    # Examples:

    url(r'^users/$', views.UsersList.as_view()),
    url(r'^users/(?P<pk>[0-9]+)/$', views.UserDetail.as_view()),
]


urlpatterns = format_suffix_patterns(urlpatterns)

models.py

models.py

import uuid
from cassandra.cqlengine import columns
from cassandra.cqlengine.models import Model
# Create your models here.

class User(Model):
    id = columns.UUID(primary_key=True, default=uuid.uuid4)
    username = columns.Text(max_length=30, required=True)
    password = columns.Text(max_length=55, required=True)
    gender = columns.UUID(default=0)
    languages = columns.List(value_type=columns.UUID)
    friends = columns.Set(value_type=columns.UUID)

serializers.py

serializers.py

from rest_framework import serializers
from tutorial.models import User

class UserSerializer(serializers.ModelSerializer):
    class Meta:
        model = User
        fields = ('username', 'position', 'gender', 'status', 'language')

views.py

views.py

from tutorial.models import User
from tutorial.serializers import UserSerializer
from rest_framework import generics

class UsersList(generics.ListCreateAPIView):
    queryset = User.objects.all()
    serializer_class = UserSerializer

class UserDetail(generics.RetrieveUpdateDestroyAPIView):
    queryset = User.objects.all()
    serializer_class = UserSerializer

Thank you in advance for your support.

预先感谢您的支持。

2 个解决方案

#1


1  

As far as I know cassandra's models don't implement a meta class, which is required to work with applications like rest_framework. You will need to implement django compatible models to work with rest_framework.

据我所知,cassandra的模型没有实现元类,这对于像rest_framework这样的应用程序来说是必需的。您将需要实现与django兼容的模型来使用rest_framework。

As stated for one of the developers of django-cassandra-engine:

正如django-cassandra引擎的一个开发者所说:

cqlengine is about to be merged into python-driver soon. After that we can think about it, but it is important to know, that django-cassandra-engine never meant to be fully compatible with django models.

cqlengine即将被合并为python驱动程序。在此之后,我们可以考虑它,但重要的是要知道,django-cassandra引擎从来没有打算与django模型完全兼容。

Github issue here

Github的问题

#2


0  

Refer this project https://github.com/jbatalle/django-cassandra-engine/tree/master/testproject

请参考这个项目https://github.com/jbatalle/django-cassandra-engine/tree/master/testproject

It uses serializers.Serializer instead of serializers.ModelSerializer

它使用序列化器。序列化器代替serializers.ModelSerializer

#1


1  

As far as I know cassandra's models don't implement a meta class, which is required to work with applications like rest_framework. You will need to implement django compatible models to work with rest_framework.

据我所知,cassandra的模型没有实现元类,这对于像rest_framework这样的应用程序来说是必需的。您将需要实现与django兼容的模型来使用rest_framework。

As stated for one of the developers of django-cassandra-engine:

正如django-cassandra引擎的一个开发者所说:

cqlengine is about to be merged into python-driver soon. After that we can think about it, but it is important to know, that django-cassandra-engine never meant to be fully compatible with django models.

cqlengine即将被合并为python驱动程序。在此之后,我们可以考虑它,但重要的是要知道,django-cassandra引擎从来没有打算与django模型完全兼容。

Github issue here

Github的问题

#2


0  

Refer this project https://github.com/jbatalle/django-cassandra-engine/tree/master/testproject

请参考这个项目https://github.com/jbatalle/django-cassandra-engine/tree/master/testproject

It uses serializers.Serializer instead of serializers.ModelSerializer

它使用序列化器。序列化器代替serializers.ModelSerializer