progammist
progammistApril 29, 2020, 1:30 p.m.

Не могу получить ID статьи/поста

django

Вопрос такой, пытаюсь сделать "Добавить статью в избранное" без ajax. В чем проблема, не могу получить ID статьи . Вот что имеем:

models.py

class Post(models.Model): #модель статьи

    title = models.CharField(max_length=200, unique=True, verbose_name=u'Заголовок поста', db_index=True )
    slug = models.SlugField(max_length=200, unique=True)
    favourite = models.ManyToManyField(User, related_name='favourtie', blank=True)

    def __str__(self):
        return self.title

views.py

def post_detail (request, slug): #вьюха вывода статьи 

    template_name = 'post_detail.html'
    post = get_object_or_404(Post, slug=slug)

    is_favourite = False # переменная для добавления статьи в избранное 
    if post.favourite.filter (id=request.user.id).exists():
        is_favourite = True

    return render(request, template_name, {'post': post, 'is_favourite': is_favourite,})      

#Функция добавления статьи в избранное

def favourite_post(request, id):
    post = get_object_or_404(Post, id=id)
    if post.favourite.filter(id=request.user.id).exists():
        post.favourite.remove(request.user)
    else:
        post.favourite.add(request.user)
    return HttpResponseRedirect(post.get_absolute_url())

urls.py

urlpatterns = [

    path('<slug:slug>/', views.post_detail, name='post_detail') #вывод статьи,
    path ('favourite_post', views.favourite_post, name="favourite_post") #Добавление в избранное,

    ]

В шаблоне вывожу ссылку на статью:

<h2><a href="{% url 'post_detail' post.slug  %}">{{ post.title }}</a></h2>

Как только пыатюсь добавить кнопку в шаблон-статью "Добавить в избранное":

    {% if is_favourite %}
    <a href="{% url 'favourite_post' id=post.id %}">
    <i class="fas fa-heart"></i>
    </a>

    {% else %}

    <a href="{% url 'favourite_post' id=post.id %}">
    <i class="far fa-heart"></i>

    </a>

    {% endif %}

Получаю ошибку при переходе по урл статьи:

NoReverseMatch at /novayastatya/
Reverse for 'favourite_post' with keyword arguments '{'id': 57}' not found. 1 pattern(s) tried: ['favourite_post$']

Нид хелп

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

5
Илья Чичак
  • April 29, 2020, 3:19 p.m.
    path('favourite_post', views.favourite_post, name="favourite_post") #Добавление в избранное,


    path('favourite_post/<post_id:int>/', views.favourite_post, name="favourite_post") # Должно быть так

У вас нет идентификатора ID в URL - следовательно он не знает, куда подставлять id в шаблоне

<a href="{% url 'favourite_post' id=post.id %}">
    Илья Чичак
    • April 29, 2020, 3:19 p.m.
    • (edited)

    ну и лично я считаю, что правильнее было бы хранить в юзере связь с постами - как-то логичнее
    можно было бы сделать так:

    if user.favourites.filter(id=id).exists():
        user.favourites.remove(post)
    else:
        user.favourites.add(post)
    

    Читается так:
    Пользователь добавляет пост в избранное, а не Пост в избранное добавляет пользователя

      progammist
      • April 29, 2020, 7:38 p.m.
      • (edited)

      Спасибо за отклик,
      попробовал изменить url, получил ошибку:

          "URL route '%s' uses invalid converter %s." % (original_route, e)
      django.core.exceptions.ImproperlyConfigured: URL route 'favourite_post/<post_id:
      int>/' uses invalid converter 'post_id'.
      
      

      Если изменить слово path , на url в начале:

       url('favourite_post/<post_id:int>/', views.favourite_post, name="favourite_post") 
      

      То ошибка вроде пропадает, но при клике на статью:

      Reverse for 'favourite_post' with keyword arguments '{'id': 57}' not found. 1 pattern(s) tried: ['favourite_post/<post_id:int>/']
      

      Может быть надо как-то изменить ссылку на статью?
      Статьи вывожу так:

      <h2><a href="{% url 'post_detail' post.slug  %}">{{ post.title }}</a></h2>
      

      Урл получается localhost/novayastatya

        Evgenii Legotckoi
        • April 30, 2020, 2:45 a.m.

        вообще так должен записываться url для path

        path('favourite_post/<int:post_id>/', views.favourite_post, name="favourite_post")
        

        сначала тип, а потом его имя

          Илья Чичак
          • April 30, 2020, 3:03 a.m.

          точно. а я писал по памяти с телефона:(

            Comments

            Only authorized users can post comments.
            Please, Log in or Sign up
            AD

            C ++ - Test 004. Pointers, Arrays and Loops

            • Result:50points,
            • Rating points-4
            m

            C ++ - Test 004. Pointers, Arrays and Loops

            • Result:80points,
            • Rating points4
            m

            C ++ - Test 004. Pointers, Arrays and Loops

            • Result:20points,
            • Rating points-10
            Last comments
            i
            innorwallNov. 12, 2024, 9:12 a.m.
            Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
            i
            innorwallNov. 12, 2024, 5:23 a.m.
            QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
            i
            innorwallNov. 12, 2024, 2:50 a.m.
            Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
            i
            innorwallNov. 12, 2024, 1:19 a.m.
            Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
            i
            innorwallNov. 12, 2024, 12:55 a.m.
            PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
            Now discuss on the forum
            i
            innorwallNov. 12, 2024, 7:56 a.m.
            добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
            i
            innorwallNov. 11, 2024, 9:55 p.m.
            Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
            9
            9AnonimOct. 25, 2024, 7:10 p.m.
            Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

            Follow us in social networks