djangoのqオブジェクトを利用して検索機能を実装しようとしています。
作って見たのですが、エラーが出ず何が間違っているのかわかりません。
temlateです。
{% block content %} <h1>一覧</h1> <br> <form method="GET" action="{% url 'search:search' %}"> <input type="text" name="keyword"> <button type="submit">検索</button> </form> {% for article in article %} <ul> <li> {{ article.created_at }} {{ article.title }} <a href="{% url 'search:detail' article.pk %}">詳細</a> </li> </ul> {% endfor %} {% endblock %}
inputタグでkeywordに入力しています。
下記 views.pyです。
views.py
from django.shortcuts import render, get_object_or_404 from dammy_article.models import Post from django.contrib import messages from django.db.models import Q def search_index(request): article = Post.objects.order_by('-id') keyword = request.GET.get('keyword') if keyword: post = article.filter( Q(title__icontains=keyword) | Q(text__iexact=keyword) ) messages.success(request, '「{}」の検索結果'.format(keyword)) return render(request, 'search/search_index.html', {'article': article }) def detail(request, post_id): article_text = get_object_or_404(Post, id=post_id) return render(request, 'search/detail.html', {'article_text': article_text })
入力フォームに単語を入力し検索を押してもエラーが出るわけではなく、何も起きません。
なぜでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/08 00:19