zoukankan      html  css  js  c++  java
  • 54.2 BMS(图书管理小试)

    1.需求分析

    功能:书籍的增删改查

    UI:

    2.数据准备

    class Book(models.Model):
        title = models.CharField(max_length=32)
        price = models.CharField(max_length=32)
        publish_time = models.DateField(auto_now_add=True)
    
        publish = models.ForeignKey(to='Publish')
        authors = models.ManyToManyField(to='Author')
    
    
    class Publish(models.Model):
        name = models.CharField(max_length=32)
        addr = models.CharField(max_length=64)
    
    
    class Author(models.Model):
        name = models.CharField(max_length=32)
        age = models.IntegerField()
        author_detail = models.OneToOneField(to='AuthorDetail')
    
    
    class AuthorDetail(models.Model):
        phone = models.BigIntegerField()
        addr = models.CharField(max_length=64)

    3.前端搭建

    1.静态文件配置

     

     2.页面搭建

     

     

     

     

     

    首页代码

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
        {% load static %}
        <link rel="stylesheet" href="{% static 'bootstrap-3.3.7-dist/css/bootstrap.min.css' %}">
        <script src="{% static 'bootstrap-3.3.7-dist/js/bootstrap.min.js' %}"></script>
    </head>
    <body>
    <nav class="navbar navbar-inverse">
      <div class="container-fluid">
        <!-- Brand and toggle get grouped for better mobile display -->
        <div class="navbar-header">
          <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
            <span class="sr-only">Toggle navigation</span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
          </button>
          <a class="navbar-brand" href="#">BMS</a>
        </div>
    
        <!-- Collect the nav links, forms, and other content for toggling -->
        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
          <ul class="nav navbar-nav">
            <li class="active"><a href="#">图书 <span class="sr-only">(current)</span></a></li>
            <li><a href="#">出版社</a></li>
            <li class="dropdown">
              <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">更多 <span class="caret"></span></a>
              <ul class="dropdown-menu">
                <li><a href="#">Action</a></li>
                <li><a href="#">Another action</a></li>
                <li><a href="#">Something else here</a></li>
                <li role="separator" class="divider"></li>
                <li><a href="#">Separated link</a></li>
                <li role="separator" class="divider"></li>
                <li><a href="#">One more separated link</a></li>
              </ul>
            </li>
          </ul>
          <form class="navbar-form navbar-left">
            <div class="form-group">
              <input type="text" class="form-control" placeholder="Search">
            </div>
            <button type="submit" class="btn btn-default">Submit</button>
          </form>
          <ul class="nav navbar-nav navbar-right">
            <li><a href="#">Jason</a></li>
            <li class="dropdown">
              <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">更多操作 <span class="caret"></span></a>
              <ul class="dropdown-menu">
                <li><a href="#">Action</a></li>
                <li><a href="#">Another action</a></li>
                <li><a href="#">Something else here</a></li>
                <li role="separator" class="divider"></li>
                <li><a href="#">Separated link</a></li>
              </ul>
            </li>
          </ul>
        </div><!-- /.navbar-collapse -->
      </div><!-- /.container-fluid -->
    </nav>
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-3">
                <div class="list-group">
                  <a href="{% url 'home' %}" class="list-group-item active">
                    首页
                  </a>
                  <a href="{% url 'show' %}" class="list-group-item">图书列表</a>
                  <a href="#" class="list-group-item">出版社列表</a>
                  <a href="#" class="list-group-item">作者列表</a>
                  <a href="#" class="list-group-item">更多操作</a>
                </div>
            </div>
            <div class="col-md-9">
                <div class="panel panel-primary">
                  <div class="panel-heading">
                    <h3 class="panel-title">BMS</h3>
                  </div>
                  <div class="panel-body">
                      {% block content %}
                      <div class="jumbotron">
                      <h1>欢迎来到亚洲最大的线上BMS系统</h1>
                      <p>更多惊喜去扫码关注个人微信公众号</p>
                      <p><a class="btn btn-primary btn-lg" href="#" role="button">点我有你好看~</a></p>
                    </div>
                      {% endblock %}
    
                  </div>
                </div>
            </div>
        </div>
    </div>
    </body>
    </html>

    1.以编辑功能为例: 

    步骤:1.展示页点击编辑按钮  走路由url  解析到 views.edit_book返回一个编辑页面 

               2.编辑完成点击提交按钮走edit_book的 POST方法

               3.数据处理完成  重定向到  book_list 页面

    前端

    展示页面   booklist.html

    {% extends 'home.html' %}
    
    {% block content %}
        <div>
            <a href="{% url 'add' %}" class="btn btn-success">新增</a>
        </div>
        <br>
        <table class="table table-striped table-hover">
            <thead>
                <tr>
                    <th>序号</th>
                    <th>书名</th>
                    <th>价格</th>
                    <th>出版日期</th>
                    <th>出版社</th>
                    <th>作者</th>
                    <th>操作</th>
                </tr>
            </thead>
            <tbody>
                {% for book_obj in book_queryset %}
                    <tr>
                        <td>{{ forloop.counter }}</td>
                        <td>{{ book_obj.title }}</td>
                        <td>{{ book_obj.price }}</td>
                        <td>{{ book_obj.publish_time|date:'Y-m-d' }}</td>
                        <td>{{ book_obj.publish.name }}</td>
                        <td>
                            {% for author_obj in book_obj.authors.all %}
                                {% if forloop.last %}
                                    {{ author_obj.name }}
                                {% else %}
                                    {{ author_obj.name }},
                                {% endif %}
                            {% endfor %}
                        </td>
                        <td>
                            <a href="{% url 'edit' book_obj.pk %}" class="btn btn-primary btn-sm">编辑</a>
                            <a href="{% url 'delete' book_obj.pk %}" class="btn btn-danger btn-sm">删除</a>
                        </td>
                    </tr>
                {% endfor %}
            </tbody>
        </table>
        <nav aria-label="Page navigation" class="text-center">
      <ul class="pagination">
        <li>
          <a href="#" aria-label="Previous">
            <span aria-hidden="true">&laquo;</span>
          </a>
        </li>
        <li><a href="#">1</a></li>
        <li><a href="#">2</a></li>
        <li><a href="#">3</a></li>
        <li><a href="#">4</a></li>
        <li><a href="#">5</a></li>
        <li>
          <a href="#" aria-label="Next">
            <span aria-hidden="true">&raquo;</span>
          </a>
        </li>
      </ul>
    </nav>
    {% endblock %}

    路由层   有名分组反向解析

     #书籍编辑页面
        url(r'^edit_book/(?P<edit_id>d+)/',views.edit_book,name='edit')

    编辑页面

    {% extends 'home.html' %}
    
    
    {% block content %}
        <h2 class="text-center">编辑书籍</h2>
        <form action="" method="post">
            <p>书名:
                <input type="text" name="title" class="form-control" value="{{ edit_obj.title }}">
            </p>
        <p>价格:
                <input type="text" name="price" class="form-control" value="{{ edit_obj.price }}">
            </p>
        <p>出版日期:
                <input type="date" name="publish_time" class="form-control" value="{{ edit_obj.publish_time|date:'Y-m-d' }}">
            </p>
        <p>出版社:
            <select name="publish" id="" class="form-control">
                {% for publish_obj in publish_queryset %}
                    {% if edit_obj.publish == publish_obj %}
                        <option value="{{ publish_obj.pk }}" selected>{{ publish_obj.name }}</option>
                    {% else %}
                        <option value="{{ publish_obj.pk }}">{{ publish_obj.name }}</option>
                    {% endif %}
    
                {% endfor %}
            </select>
            </p>
        <p>作者:
            <select name="authors" id="" class="form-control" multiple>
                {% for author_obj in author_queryset %}
                    {% if author_obj in edit_obj.authors.all %}
                        <option value="{{ author_obj.pk }}" selected>{{ author_obj.name }}</option>
                    {% else %}
                        <option value="{{ author_obj.pk }}">{{ author_obj.name }}</option>
                    {% endif %}
    
                {% endfor %}{
            </select>
        </p>
            <input type="submit" class="btn btn-warning pull-right">
    
    
        </form>
    {% endblock %}

    后端:

    def edit_book(request,edit_id):
        # 获取用户想编辑的对象 展示给用户
        edit_obj = models.Book.objects.filter(pk=edit_id).first()
        if  request.method == 'POST':
            title = request.POST.get('title')
            price = request.POST.get('price')
            publish_time = request.POST.get('publish_time')
            publish_id = request.POST.get('publish')
            authors_list = request.POST.getlist('authors')
            models.Book.objects.filter(pk=edit_id).update(title=title,price=price,publish_time=publish_time,publish_id=publish_id)
            edit_obj.authors.set(authors_list)
    
            _url = reverse('show')
            return redirect(_url)
    
        publish_queryset = models.Publish.objects.all()
        author_queryset = models.Author.objects.all()
        return render(request,'edit_book.html',locals())
  • 相关阅读:
    UnityEngine中Animator相关类的说明
    MecanimControl插件随笔
    Mecanim Control
    Unity3D
    Unity Mecanim在大型mmo中的应用
    Unity3D 性能优化
    Unity3D 图形优化
    U3D开发性能优化笔记(待增加版本.x)
    通过JS语句判断WEB网站的访问端是电脑还是手机
    jquery 鼠标事件汇总
  • 原文地址:https://www.cnblogs.com/bigbox/p/12176812.html
Copyright © 2011-2022 走看看