我创建我的list_posts和detail_post时出错! 我在list_posts上的代码:
def blog(request):
list_posts = Post.objects.filter(status = 'published').order_by('-published_at')[:]
context = {
'list_posts':list_posts
}
return render(request, 'mysite/doc_2.html', context)
和我在detail_post上的代码:
edef detail(request, year, month, day,slug):
post = get_object_or_404(Post, status='published',
published_at__year=year,
published_at__month=month,
published_at__day=day,
slug=slug)
context = {
'post':post
}
return render(request, 'mysite/ws-post.html', context)
和我的app_name.urls中的代码:
re_path(r'^(?P<year>\d{4})-(?P<month>\d{1,2})-(?P<day>\d{1,2})/(?P<slug>[-\w]+)$/',views.detail,name='detail'),
,URL中我的HTML list_posts中的代码是:
<a class="l-ws-more" href="{% url 'blog:detail' year=post.published_at.year month=post.published_at.month day=post.published_at.day %}">
我的错误是:
NoReverseMatch at /blog/
Reverse for 'detail' with keyword arguments '{'year': '', 'month': '',
'day': ''}' not found. 1 pattern(s) tried: ['blog/(?P<year>\\d{4})-(?
P<month>\\d{1,2})-(?P<day>\\d{1,2})/(?P<slug>[-\\w]+)$/']
我的模板list_posts:
{% if list_posts %}
{% for posts in list_posts %}
<div class="doc-item-2">
<div class="doc-intro-2 dark_unhover">
<figure class="effect-oscar">
<img src="{{ posts.banner.url }}" alt="{{ posts.title }}">
<figcaption>
<h2>Warm <span>Oscar</span></h2>
</figcaption>
</figure>
<div class="rate-star">
<span class="fa fa-star star-checked"></span>
<span class="fa fa-star star-checked"></span>
<span class="fa fa-star star-checked"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</div>
</div>
<div class="doc-content-2">
<h3>{{ posts.title }}</h3>
<div class="info_blue">
<div class="date_1">
<p>ساعت</p>
<span>{{ posts.published_at|jalali_time }}</span>
</div>
<div class="date_2">
<p>تاریخ</p>
<!-- <span>{{ posts.published_at|date:"Y D M" }}</span> -->
<span>{{ posts.published_at|jalali_date }}</span>
</div>
</div>
<p class="dec">{{ posts.summary }}</p>
<a class="l-ws-more" href="{% url 'blog:detail' year=post.published_at.year month=post.published_at.month day=post.published_at.day %}">
ادامه مطلب</a>
</div>
</div>
{% endfor %}
{% else %}
<h2>no post!</h2>
{% endif %}
请回答我的问题 和错误的图片==> enter image description here
答案 0 :(得分:0)
您的路径需要4个参数,其中包括一个末尾:
re_path(r'^(?P<year>\d{4})-(?P<month>\d{1,2})-(?P<day>\d{1,2})/
(?P<slug>[-\w]+) # slug
$/',views.detail,name='detail'),
但是在您的模板中,仅通过了年,月和日,没有任何问题:
href="{% url 'blog:detail'
year=post.published_at.year
month=post.published_at.month
day=post.published_at.day
# slug missing here!: slug=post.slug
%}"