Note that there are some explanatory texts on larger screens.

plurals
  1. POAttributeError 'IdLookup' object has no attribute 'rel'
    primarykey
    data
    text
    <p>I try to use the django REST-framework's tutorial <a href="http://django-rest-framework.org/#django-rest-framework" rel="nofollow">http://django-rest-framework.org/#django-rest-framework</a> to administrate users. (I also use the Neo4j database and the neo4django mapper <a href="https://github.com/scholrly/neo4django" rel="nofollow">https://github.com/scholrly/neo4django</a> to acces data via python.)<br> Whatever, wen I call localhost:8000/users an AttributeError appears. </p> <p>models.py</p> <pre><code>from django.utils import timezone from django.conf import settings from django.contrib.auth import models as django_auth_models from ..db import models from ..db.models.manager import NodeModelManager from ..decorators import borrows_methods class UserManager(NodeModelManager, django_auth_models.UserManager): pass # all non-overriden methods of DjangoUser are called this way instead. # inheritance would be preferred, but isn't an option because of conflicting # metaclasses and weird class side-effects USER_PASSTHROUGH_METHODS = ( "__unicode__", "natural_key", "get_absolute_url", "is_anonymous", "is_authenticated", "get_full_name", "set_password", "check_password", "set_unusable_password", "has_usable_password", "get_group_permissions", "get_all_permissions", "has_perm", "has_perms", "has_module_perms", "email_user", 'get_profile','get_username') @borrows_methods(django_auth_models.User, USER_PASSTHROUGH_METHODS) class User(models.NodeModel): objects = UserManager() username = models.StringProperty(indexed=True, unique=True) first_name = models.StringProperty() last_name = models.StringProperty() email = models.EmailProperty(indexed=True) password = models.StringProperty() is_staff = models.BooleanProperty(default=False) is_active = models.BooleanProperty(default=False) is_superuser = models.BooleanProperty(default=False) last_login = models.DateTimeProperty(default=timezone.now()) date_joined = models.DateTimeProperty(default=timezone.now()) USERNAME_FIELD = 'username' REQUIRED_FIELDS=['email'] </code></pre> <p>serializers.py</p> <pre><code>from neo4django.graph_auth.models import User from rest_framework import serializers class UserSerializer(serializers.HyperlinkedModelSerializer): class Meta: model = User fields = ('url', 'username', 'email') </code></pre> <p>views.py</p> <pre><code>from neo4django.graph_auth.models import User from rest_framework import viewsets from api.serializers import UserSerializer class UserViewSet(viewsets.ModelViewSet): """ API endpoint that allows users to be viewed or edited. """ queryset = User.objects.all() serializer_class = UserSerializer </code></pre> <p>I get this:</p> <pre><code>Environment: Request Method: GET Request URL: http://localhost:8000/users/ Django Version: 1.5.3 Python Version: 2.7.3 Installed Applications: ('core.models', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'neo4django.graph_auth', 'rest_framework') Installed Middleware: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware') Traceback: File "/opt/phaidra/env/local/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response 115. response = callback(request, *callback_args, **callback_kwargs) File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/viewsets.py" in view 78. return self.dispatch(request, *args, **kwargs) File "/opt/phaidra/env/local/lib/python2.7/site-packages/django/views/decorators/csrf.py" in wrapped_view 77. return view_func(*args, **kwargs) File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/views.py" in dispatch 399. response = self.handle_exception(exc) File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/views.py" in dispatch 396. response = handler(request, *args, **kwargs) File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/mixins.py" in list 92. serializer = self.get_pagination_serializer(page) File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/generics.py" in get_pagination_serializer 113. return pagination_serializer_class(instance=page, context=context) File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/pagination.py" in __init__ 85. self.fields[results_field] = object_serializer(source='object_list', **context_kwarg) File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/serializers.py" in __init__ 162. self.fields = self.get_fields() File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/serializers.py" in get_fields 198. default_fields = self.get_default_fields() File "/opt/phaidra/env/local/lib/python2.7/site-packages/rest_framework/serializers.py" in get_default_fields 599. while pk_field.rel and pk_field.rel.parent_link: Exception Type: AttributeError at /users/ Exception Value: 'IdLookup' object has no attribute 'rel' </code></pre> <p>I am rather new on the Python/Django/REST service area. I hope someone could help. Thanks in advance.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload