flask实现简单数据的增删改查(蓝图)


main文件为主文件,实现蓝图的引入与注册

from flask import Flask from add_Flask import add from del_Flask import dele from select_Flask import select from update_Flask import update def flask_app(): app=Flask(__name__) app.register_blueprint(add.add) #对蓝图进行注册
 app.register_blueprint(dele.dele) app.register_blueprint(select.select) app.register_blueprint(update.update) return app #以函数方式返回app对象
 flask_app().run(debug=True)

data文件存放列表数据:

STUDENT = [ {'id': 1, 'name': '王小璐', 'age': 18, 'gender': ''}, {'id': 2, 'name': '李晓芬', 'age': 21, 'gender': ''}, {'id': 3, 'name': '陈志鹏', 'age': 24, 'gender': ''}, {'id': 4, 'name': '胡歌', 'age': 35, 'gender': ''}, {'id': 5, 'name': '赵安琪', 'age': 28, 'gender': ''}, ]

添加数据蓝图:

from flask import Blueprint,request,redirect,render_template from blueview.flask_Data import STUDENT add=Blueprint('add',__name__,template_folder="temp",static_folder='static') @add.route('/add',methods=['GET','POST']) def add_view(): if request.method=='POST': stu_dic={ 'id':request.form.get('id'), 'name':request.form.get('name'), 'age':request.form.get('age'), 'gender':request.form.get('gender') } STUDENT.append(stu_dic) return redirect('/select') return render_template('add.html')
add蓝图
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
    <title>添加学生</title>
</head>
<body>
<script src="/static/jquery-3.3.1.min.js"></script>
<script src="/static/bootstrap/js/bootstrap.min.js"></script>

<form method="post" class="form-horizontal" style="margin-top: 50px">
    <div class="form-group">
        <label for="inputID" class="col-sm-2 control-label">编号:</label>
        <div class="col-sm-4">
            <input type="text" class="form-control" name="id" placeholder="">
        </div>
    </div>
    <div class="form-group">
        <label for="inputNAME" class="col-sm-2 control-label">姓名:</label>
        <div class="col-sm-4">
            <input type="text" class="form-control" name="name" placeholder="">
        </div>
    </div>
    <div class="form-group">
        <label for="inputAGE" class="col-sm-2 control-label">年龄:</label>
        <div class="col-sm-4">
            <input type="text" class="form-control" name="age" placeholder="">
        </div>
    </div>
    <div class="form-group">
        <label for="inputGENDER" class="col-sm-2 control-label">性别:</label>
        <div class="col-sm-4">
            <input type="text" class="form-control" name="gender" placeholder="">
        </div>
    </div>

    <div class="form-group">
        <label class="col-sm-2 control-label"></label>
        <div class="col-sm-4">
            <input class="btn btn-success" type="submit" value="添加学生">
        </div>
    </div>

</form>

</body>
</html>
add.html

删除数据蓝图:

from flask import Blueprint,render_template from blueview.flask_Data import STUDENT dele=Blueprint('dele',__name__,template_folder="temp",static_folder='static') @dele.route('/dele/<int:nid>',methods=['GET','POST']) def del_view(nid): # print(nid)
    ST=[] for stu in STUDENT: if stu["id"]==nid: pass
        else: ST.append(stu) return render_template('select.html',student=ST)
dele蓝图
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
    <title>学生信息</title>
</head>
<body>
<script src="/static/jquery-3.3.1.min.js"></script>
<script src="/static/bootstrap/js/bootstrap.min.js"></script>

<table class="table table-bordered">
    <thead>
    <tr>
        <th>编号</th>
        <th>姓名</th>
        <th>年龄</th>
        <th>性别</th>
        <th colspan="2" rowspan="1" style='text-align: center;'>编辑</th>
    </tr>
    </thead>
    <tbody> {% for st in student %} <tr>
        <td>{{ st.id }}</td>
        <td>{{ st.name }}</td>
        <td>{{ st.age }}</td>
        <td>{{ st.gender }}</td>
        <td><a href="/update/{{ st.id }}"  class="btn btn-primary">修改</a> </td>
        <td><a href="/dele/{{ st.id }}"  class="btn btn-danger">删除</a></td>
        </tr> {% endfor %} </tbody>

</table>
<a href="/add"  class="btn btn-success">添加学生</a>
</body>
</html>
dele.html

更新数据蓝图:

from flask import Blueprint,request,redirect,render_template from blueview.flask_Data import STUDENT update=Blueprint('update',__name__,template_folder='temp',static_folder='static') @update.route('/update/<int:nid>',methods=['GET','POST']) def update_view(nid): print(nid) if request.method=='POST': stu_dic={ 'id':request.form.get('id'), 'name': request.form.get('name'), 'age': request.form.get('age'), 'gender': request.form.get('gender') } for index,stu in enumerate(STUDENT): if stu['id']==int(stu_dic['id']): STUDENT[index]=stu_dic return redirect('/select') for stu in STUDENT: if stu['id']==int(nid): return render_template('update.html',student=stu) return render_template("update.html", student="")
update蓝图
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>学生列表</title>
</head>
<body>
<form method="post">
    <input type="text" name="id" hidden value="{{ student.id }}"><br> 姓名:<input type="text" name="name" value="{{ student.name }}"><br> 年龄:<input type="text" name="age" value="{{ student.age }}"><br> 性别:<input type="text" name="gender" value="{{ student.gender }}"><br>
    <input type="submit" value="修改信息">
</form>

</body>
</html>
update.html

查询数据蓝图:

from flask import Blueprint,render_template from blueview.flask_Data import STUDENT select=Blueprint('select',__name__,template_folder="temp",static_folder="static") @select.route('/select') def select_view(): return render_template('select.html',student=STUDENT)
select蓝图
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
    <title>学生信息</title>
</head>
<body>
<script src="/static/jquery-3.3.1.min.js"></script>
<script src="/static/bootstrap/js/bootstrap.min.js"></script>

<table class="table table-bordered">
    <thead>
    <tr>
        <th>编号</th>
        <th>姓名</th>
        <th>年龄</th>
        <th>性别</th>
        <th colspan="2" rowspan="1" style='text-align: center;'>编辑</th>
    </tr>
    </thead>
    <tbody> {% for st in student %} <tr>
        <td>{{ st.id }}</td>
        <td>{{ st.name }}</td>
        <td>{{ st.age }}</td>
        <td>{{ st.gender }}</td>
        <td><a href="/update/{{ st.id }}"  class="btn btn-primary">修改</a> </td>
        <td><a href="/dele/{{ st.id }}"  class="btn btn-danger">删除</a></td>
        </tr> {% endfor %} </tbody>

</table>
<a href="/add"  class="btn btn-success">添加学生</a>
</body>
</html>
select.html

项目的完整文件结构为:

其中static为静态资源文件夹

实现的效果图如下:


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM