Django tut博客模式3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django tut博客模式3相关的知识,希望对你有一定的参考价值。
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博客模式3的主要内容,如果未能解决你的问题,请参考以下文章