美文网首页Django
(二)django框架下cms系统开发

(二)django框架下cms系统开发

作者: 王大合 | 来源:发表于2017-10-31 11:48 被阅读0次

    第二章节是项目创立到数据库模型建立进行详细说明


    2.1创建项目

    • 创建项目cms和应用focus

    django-admin.py startproject cms
    cd cms
    python manage.py startapp focus
    

    或者用pycharm直接创建项目更加简单;

    • 将应用focus添加在cms/cms/settings.py中:

    INSTALLED_APPS = (
    ...
    'focus',
    )
    

    2.2 项目需求分析

    在构建数据模型前需要先分析项目需求。
    cms(Content Management System内容管理系统) 这个项目主要功能:

    • 文章的呈现:包括标题,内容,作者,评论,赞同数,收藏数。
    • 注册用户信息:昵称,邮箱,密码,简介,收藏了的文章,赞同了的文章,评论了的文章。

    我们允许用户对一篇文章多次评论;但点赞和收藏的操作一篇文章只能进行一次,为了实现这一点,需要知道每篇文章和每个用户的对应关系(是否已点赞,是否已收藏)。我们创建用户和文章,评论三个数据模型,让用户和文章关联成多对多的关系,从而判断用户是否已经收藏了某篇文章,另外创建一个点赞的数据模型,来判断用户是否已经赞同过某篇文章。

    2.3 从models.py进行模板创建

    当我们创建了focus这个应用(app)的时候,cms/focus这个文件夹中会自动生成models.py这个文件。
    在django中内置有django.contrib.auth.models.User模块,这个模块字段有限,但是我们可以继承
    django.contrib.auth.models.AbstractUser这个类来扩充字段,之所以不自己写User模块,是因为内
    置的User模块使整个用户验证系统非常容易实现。User模块内置的字段参见 django文档,下面我
    们只要再扩充一个字段即可:

    # -*- coding: utf-8 -*-
    from __future__ import unicode_literals
    
    from django.db import models
    
    # Create your models here.
    import datetime
    from django.db import models
    from django.contrib.auth.models import User
    from django.utils.encoding import python_2_unicode_compatible
    from django.utils import timezone
    from django.contrib.auth.models import AbstractUser
    
    @python_2_unicode_compatible
    class NewUser(AbstractUser):
     profile = models.CharField('profile', default='',max_length=256)
    def __str__(self):
     return self.username
    AUTH_USER_MODEL = "focus.NewUser"
    
    @python_2_unicode_compatible
    class Column(models.Model):
     name = models.CharField('column_name', max_length=256)
    intro = models.TextField('introduction', default='')
    def __str__(self):
     return self.name
    class Meta:
     verbose_name = 'column'
     verbose_name_plural = 'column'
    ordering = ['name']
    
    @python_2_unicode_compatible
    class Article(models.Model):
     column = models.ForeignKey(Column, blank=True, null=True, verbose_name = 'belong to')
     title = models.CharField(max_length=256)
     author = models.ForeignKey('Author')
     user = models.ManyToManyField('NewUser', blank=True)
     content = models.TextField('content')
     pub_date = models.DateTimeField(auto_now_add=True, editable=True)
     update_time = models.DateTimeField(auto_now=True, null=True)
     published = models.BooleanField('notDraft', default=True)
     poll_num = models.IntegerField(default=0)
     comment_num = models.IntegerField(default=0)
     keep_num = models.IntegerField(default=0)
    
     def __str__(self):
         return self.title
    
     class Meta:
         verbose_name = 'article'
    
     verbose_name_plural = 'article'
    
     @python_2_unicode_compatible
     class Comment(models.Model):
         user = models.ForeignKey('NewUser', null=True)
    
     article = models.ForeignKey(Article, null=True)
     content = models.TextField()
     pub_date = models.DateTimeField(auto_now_add=True, editable=True)
     poll_num = models.IntegerField(default=0)
    
     def __str__(self):
         return self.content
    

    相关文章

      网友评论

        本文标题:(二)django框架下cms系统开发

        本文链接:https://www.haomeiwen.com/subject/pcahpxtx.html