2017-10-16 58 views
0

我試圖製作通知應用程序。我有一個收集關於用戶應該被通知的動作的信息的中間部分,並且在處理動作的視圖中,它會自動在UserNotification模型中創建一個實例。這一切都工作。現在,如果用戶的帖子被其他用戶所喜歡,那麼這些操作需要顯示在通知頁面上。但是,我顯然不希望任何人使用它來查看網站上正在創建的每個通知,而只是看到他們發佈的通知。AttributeError位於/ notify/notify /'UserNotifications'對象沒有屬性'user'

我遇到了視圖和基於當前用戶篩選通知的問題。更具體地講,我收到此錯誤:

AttributeError at /notify/notify/ 
'UserNotifications' object has no attribute 'user' 

隨着回溯:

Traceback (most recent call last): 
    File "/anaconda3/envs/dev/lib/python3.6/site-packages/django/core/handlers/exception.py", line 41, in inner 
    response = get_response(request) 
    File "/anaconda3/envs/dev/lib/python3.6/site-packages/django/core/handlers/base.py", line 187, in _get_response 
    response = self.process_exception_by_middleware(e, request) 
    File "/anaconda3/envs/dev/lib/python3.6/site-packages/django/core/handlers/base.py", line 185, in _get_response 
    response = wrapped_callback(request, *callback_args, **callback_kwargs) 
    File "/anaconda3/envs/dev/lib/python3.6/site-packages/django/views/generic/base.py", line 68, in view 
    return self.dispatch(request, *args, **kwargs) 
    File "/anaconda3/envs/dev/lib/python3.6/site-packages/django/contrib/auth/mixins.py", line 56, in dispatch 
    return super(LoginRequiredMixin, self).dispatch(request, *args, **kwargs) 
    File "/anaconda3/envs/dev/lib/python3.6/site-packages/django/views/generic/base.py", line 88, in dispatch 
    return handler(request, *args, **kwargs) 
    File "/anaconda3/envs/dev/lib/python3.6/site-packages/django/views/generic/list.py", line 160, in get 
    self.object_list = self.get_queryset() 
    File "/Users/garrettlove/Desktop/evverest/notify/views.py", line 30, in get_queryset 
    return UserNotification.objects.filter(user=request.user) 

這是我的看法有關本:

// Bunch of imports are all here 

User = get_user_model() 

class UserNotifications(LoginRequiredMixin,ListView): 
    login_url = 'account_login' 
    model = UserNotification 
    template_name = 'notify/usernotification_list.html' 
    context_object_name = 'notifies' 
    paginate_by = 25 

    def get_queryset(request): 
     return UserNotification.objects.filter(user=request.user) 

這裏是我的UserNotification型號:

from django.db import models 
from django.contrib.auth import get_user_model 
from django.db.models.signals import post_save 
from django.dispatch import receiver 

User = get_user_model() 

# Create your models here. 
class UserNotification(models.Model): 
    user = models.ForeignKey(User,related_name='user',null=True) 
    post = models.ForeignKey('feed.UserPost',related_name='post') 
    timestamp = models.DateTimeField(auto_now_add=True) 
    notify_type = models.CharField(max_length=6) 
    read = models.BooleanField(default=False) 

    def __str__(self): 
     return str(self.user) 

回答

1
def get_queryset(self): 
    return UserNotification.objects.filter(user=self.request.user) 
相關問題