简体   繁体   English

Django 意见表

[英]Django comment form

I am following the guide to create comment given by Django central,https://djangocentral.com/creating-comments-system-with-django/ and it is working.我正在按照 Django 中央、https://djangocentral.com/creating-comments-system-with-django/给出的评论指南创建评论,它正在工作。 However I am using the {{ form.as_p }} Which will give 3 fields, as the form say, with name, email and the body.但是,我使用的是{{ form.as_p }} ,它会给出 3 个字段,如表单所示,名称为 email 和正文。 But i wanted to have predefined name, which would be your username you are logged inn with and the email attached to that account.但我想有预定义的名称,这将是您登录时使用的用户名和附加到该帐户的 email。 How would i go ahead to create that?我将如何 go 提前创建它?

forms.py forms.py

class CommentForm(forms.ModelForm):
    class Meta:
        model = Comment
        fields = ['name', 'email', 'body']

models.py模型.py

class Comment(models.Model):
    post = models.ForeignKey(Post, related_name='comments', on_delete=models.CASCADE)
    name = models.CharField(max_length=255)
    email = models.EmailField()
    body = models.TextField()

    date_added = models.DateTimeField(auto_now_add=True)

    class Meta:
        ordering = ['-date_added']

    def __str__(self):
        return self.name
    

views.py视图.py

def post_detail(request, category_slug, slug, status=Post.ACTIVE):
    post = get_object_or_404(Post, slug=slug)

    if request.method == 'POST':
        form = CommentForm(request.POST)
        if form.is_valid():
           comment = form.save(commit=False)
           comment.post = post
           comment.save()

           return redirect('post_detail',  category_slug=category_slug, slug=slug)
    else:
        form = CommentForm()

    return render(request, 'blog/post_detail.html', {'post': post, 'form': form})

in the html template在 html 模板中

{% if user.is_authenticated %}
    <h2 class="subtitle is-4">Comments</h2>
<form method="post" class="mb-6">
    {% csrf_token %}
    {{ form.as_p }}
    <div class="field">
        <div class="control">
            <button class="button is-success">Submit comment</button>
         </div>
    </div>
</form>
{% endif %}

If you want to pre-set the username and email fields, you can use the initial form parameters like this:如果要预先设置用户名和 email 字段,可以使用如下initial表单参数:

views.py视图.py

def post_detail(request, category_slug, slug, status=Post.ACTIVE):
    post = get_object_or_404(Post, slug=slug)

    if request.method == 'POST':
        form = CommentForm(request.POST)
        if form.is_valid():
           comment = form.save(commit=False)
           comment.post = post
           comment.save()

           return redirect('post_detail',  category_slug=category_slug, slug=slug)
    else:
        user = request.user
        form = CommentForm(initial={"name": user.username, "email": user.email})

        return render(request, 'blog/post_detail.html', {'post': post, 'form': form})

forms.py forms.py

class CommentForm(forms.ModelForm):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.fields['name'].disabled = True
        self.fields['email'].disabled = True 
        
       # OR set readonly widget attribute.
       # self.fields['name'].widget.attrs['readonly'] = True
       # self.fields['email'].widget.attrs['readonly'] = True

    class Meta:
        model = Comment
        fields = ['name', 'email', 'body']

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

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