簡體   English   中英

Django 1.7 | 帶有博客帖子的評論表

[英]Django 1.7 | Comment Form With Blog Post

我使用 Django 1.7 在博客上工作。

我想在每篇博文中包含一個評論表,但不確定如何做。

這是我的代碼:

楷模:

class Category(models.Model):
    name = models.CharField(max_length=128, unique=True)
    slug = models.SlugField(unique=True)

    def save(self, *args, **kwargs):
            self.slug = slugify(self.name)
            super(Category, self).save(*args, **kwargs)

    def __unicode__(self):
            return self.name

class Post(models.Model):
    title = models.CharField(max_length=100, unique=True)
    slug = models.SlugField(max_length=100, unique=True)
    body = models.TextField()
    posted = models.DateTimeField(db_index=True, auto_now_add=True)
    category = models.ForeignKey(Category)

    def save(self, *args, **kwargs):
        self.slug = slugify(self.title)
        super(Post, self).save(*args, **kwargs)

    def __unicode__(self):
        return '%s' % self.title

class Comment (models.Model):
    comment_body = models.TextField()
    commented_on = models.DateTimeField(db_index=True,auto_now=True)
    commenter = models.ForeignKey(User)
    post = models.ForeignKey(Post)

    def __unicode__(self):
        return '%s' % self.comment_body

class Tag (models.Model):
    title = models.CharField(max_length=100, unique=True)
    slug = models.SlugField(max_length=100, unique=True)
    post = models.ManyToManyField(Post)

    def save(self, *args, **kwargs):
        self.slug = slugify(self.title)
        super(Tag, self).save(*args, **kwargs)

    def __unicode__(self):
        return '%s' % self.title

意見:

def blog_post(request, blog_post_slug):
    post_detail = Post.objects.get(slug=blog_post_slug)
    comments = Comment.objects.filter(post=post_detail.id)
    tags = Tag.objects.filter(post=post_detail.id)
    context_dict = {'post': post_detail, 'slug': blog_post_slug, 'comments':comments, 'tags':tags}
    response = render(request,'blog/blog_post.html', context_dict)
    return response

模板:

{% extends 'base.html' %}

{% load staticfiles %}

{% block title %}{{ post.title }}{% endblock %}

{% block body_block %}
<div class="container">
    <div class="post-preview">
    {% if post %}
    <div>
        <h2>{{ post.title }}</h2>
        <small>{{ post.category }}</small>
        <p class="post-meta">{{ post.posted }}</p>
        <p>{{ post.body }}</p>
<h3>Comments</h3>
        {% if comments %}
        {% for comment in comments %}
       <h5> {{ comment.commenter | capfirst }}</h5>
          <p>  {{ comment.comment_body }}</p>
            <small>{{ comment.commented_on }}</small>
        <hr>
        {% endfor %}
        {% else %}
        <small>No comments Yet </small>
        {% endif %}

        <h3>Tags</h3>
        {% if tags %}
        {% for tag in tags %}
       <span> <a href="{% url 'blog:tag' tag.slug %}"> {{ tag.title }}</a>,</span>
        {% endfor %}
        {% else %}
        <small>Without Tags! </small>
        {% endif %}

    </div>
    {% else %}
    <strong>No such post</strong>
    {% endif %}
        </div>
    </div>
{% endblock %}

我正在使用 form.py 生成表單,但不確定在這種情況下該怎么做。

我只是希望觀眾可以在博客文章的頁面上提交他的評論。

(這個答案可能基於 djangoproject.com 和其他地方的 Django 教程)

您可以簡單地在 form.py 中定義一個用於評論的表單,在您的blog_post()函數中創建它的新實例,並將新創建的表單包含在context_dict 然后在模板中,使用{{ thenameyougiveyourforminthecontext }}來包含表單的簡單版本。

然后,在views.pyblog_post()方法中,處理表單的提交。 Django 網站(特別是這個頁面)描述了如何處理表單的提交。 在表格處理,你可以創建一個新的Comment與字典條目對象form.cleaned_data (假設你已經使用驗證它form.is_valid()第一個),並將其保存。

這是有關如何執行此操作的非常簡短的概述。 請查看我鏈接的網址以真正了解如何執行此操作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM