0

我对 django 中的内容类型感到困惑。首先让我展示我的代码:

模型.py

class Comment(models.Model):
    owner = models.CharField(max_length=255)
    email = models.EmailField(max_length=255)
    posted_at = models.DateTimeField(auto_now_add=True)
    content = models.TextField(blank=True, null=True)
    contentmarkdown = models.TextField(help_text='Use Markdown syntax.')
    content_type = models.ForeignKey(ContentType, limit_choices_to=models.Q(
        app_label='post', model='post') | models.Q(app_label='comment',
                                                   model='comment'))
    object_id = models.PositiveIntegerField()
    content_object = generic.GenericForeignKey('content_type', 'object_id')

    def save(self, *args, **kwargs):
        import markdown
        self.content = markdown.markdown(self.contentmarkdown)
        super(Comment, self).save(*args, **kwargs) 

我的意见.py

def create(request):
    if request.method == 'POST':
        print 'POST data: ', request.POST
        form = CommentForm(request.POST)
        #app_label, model = request.POST.get('model').split('.')
        if form.is_valid():
            comment = Comment()
        content_type = ContentType.objects.get(app_label="comment", model="comment")
        object_id = ?
        comment = Comment.objects.create(
            content_type = content_type,
            object_id = object_id,
            contentmarkdown = request.POST.get('contentmarkdown'),
            owner= request.POST.get('owner'),
            email = request.POST.get('email')
        )
        return HttpResponseRedirect("/")

网址.py

from django.conf.urls import patterns

urlpatterns = patterns('',
    (r'^create/$', 'comment.views.create'),

html

{% load i18n %}
<div class="comment">
    <form action="{% url "comment.views.create" %}" method="post">
        {% csrf_token %}
            {% for field in form %}
                {{ field.label_tag }}
                {{ field }}<p>

            {% endfor %}
        <input type="submit" value="{% trans "Submit" %}">
    </form>
</div>

表格.py

from django import forms
from comment.models import Comment
from django.forms import ModelForm

class CommentForm(ModelForm):
    def __init__(self, *args, **kwargs):
        super(CommentForm, self).__init__(*args, **kwargs)
        self.fields['owner'].label = 'Name'
        self.fields['contentmarkdown'].label = ''

    class Meta:
        model = Comment
        exclude = ['content', 'content_type', 'object_id' ]

现在我的问题是:我收到了这个错误:

object_id may not be NUL

1-我怎样才能得到object_id?2-我应该写什么 object_id = ?3-如果我写这个 request.POST.get(?) 没有什么像 id 一样的东西请你告诉我我怎么能找出 object_id ?

4

1 回答 1

1

当您想将模型与许多不同的模型相关联时,ContentType 和 GenericForeignKey 就会出现。假设你有商店,你卖衣服和餐具。你有这两个单独的模型。您有一个 Cloth 的详细信息页面和一个 Utensil 的详细信息页面。

您希望访问 Cloth 详细信息页面的任何人对 Cloth 发表评论。同样,您希望访问 Utensil 详细信息页面的任何人都可以评论此特定 Utensil。因此,注释可以与其中任何一个相关联,因此您需要一个 GenericForeignKey。

当用户在 Cloth 详情页发表评论时, object_id 将是 Cloth 实例的 id, content_type 将是 model Cloth

当用户在 Utensil 详情页发表评论时, object_id 将是 utensil 实例的 id , content_type 将是 model Utensil

评论不能单独存在。它必须与某事有关。

再次阅读https://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/以更好地理解 ContentType 和 GFK 存在的原因。

假设您在 Cloth 详细信息视图中,因此在将用户发送到 Cloth 详细信息页面时,您知道 Cloth id。在上下文中发送此布料 idobject_id并在评论表单中使用它

因此,您的评论表单如下所示:

{% load i18n %}
<div class="comment">
<form action="{% url "comment.views.create" %}" method="post">
    {% csrf_token %}
        {% for field in form %}
            {{ field.label_tag }}
            {{ field }}<p>

        {% endfor %}
        <input type="hidden" value="{{object_id}}" name="object_id"/>
    <input type="submit" value="{% trans "Submit" %}">
</form>
</div>

在评论创建视图中,读取此对象 ID 并使用它。所以,鉴于,你说:

object_id = request.POST['object_id']
于 2013-09-21T06:52:32.050 回答