繁体   English   中英

我无法创建post_detail和post_list

[英]i can't create a post_detail and post_list

创建我的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 %}

请回答我的问题和错误的图片==> 在此处输入图片描述

您的路径需要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
         %}"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM