Django tut博客模型完成
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django tut博客模型完成相关的知识,希望对你有一定的参考价值。
from django.db import models # Create your models here. class Category(models.Model): category_title = models.CharField(max_length=200) def __unicode__(self): return self.category_title class Post(models.Model): entry_title = models.CharField(max_length=200) entry_content = models.TextField(max_length=5000) entry_category = models.ForeignKey(Category) def __unicode__(self): return self.entry_title class Comment(models.Model): comment_author = models.CharField(max_length=200) author_email = models.CharField(max_length=200) author_web = models.CharField(max_length=200) post_id = models.ForeignKey(Post) comment_content = models.TextField(max_length=500) def __unicode__(self): return self.comment_author
以上是关于Django tut博客模型完成的主要内容,如果未能解决你的问题,请参考以下文章