计算机作业:flask学生信息管理系统,前后端分离
更加详细青岛b站查看:学生信息管理系统
即使你对Flask不熟悉,希望你要掌握基础,才能修改和看懂一个项目,本专栏有讲解过Flask基础,这里便不说了,自己去看:
构思比较简单,用一张表存储信息:
注:本人使用数据库可视化工具:navicat
把一个网站分为多个页面,这样便于管理,本人把所有页面分别设置如下几个功能:
相关技术不懂的自行查询资料,学起来很容易,学习方法很重要,Flask框架我也就学了一天,大学生拿出自己的智慧,要么就交税。
首页:
添加学生:
删除学生:
查看学生信息:
from flask import *
import sqlite3
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")
@app.route("/add_student")
def add_student():
return render_template("add_student.html")
@app.route("/saverecord",methods = ["POST","GET"])
def saveRecord():
msg = "msg"
if request.method == "POST":
try:
name = request.form["name"]
email = request.form["email"]
gender = request.form["gender"]
contact = request.form["contact"]
dob = request.form["dob"]
address = request.form["address"]
with sqlite3.connect("student_detials.db") as connection:
cursor = connection.cursor()
cursor.execute("INSERT into Student_Info (name, email, gender, contact, dob, address) values (?,?,?,?,?,?)",(name, email, gender, contact, dob, address))
connection.commit()
msg = "学生信息添加成功"
except:
connection.rollback()
msg = "不能把该学生信息添加到数据库"
finally:
return render_template("success_record.html",msg = msg)
connection.close()
@app.route("/delete_student")
def delete_student():
return render_template("delete_student.html")
@app.route("/student_info")
def student_info():
connection = sqlite3.connect("student_detials.db")
connection.row_factory = sqlite3.Row
cursor = connection.cursor()
cursor.execute("select * from Student_Info")
rows = cursor.fetchall()
return render_template("student_info.html",rows = rows)
@app.route("/deleterecord",methods = ["POST"])
def deleterecord():
id = request.form["id"]
with sqlite3.connect("student_detials.db") as connection:
cursor = connection.cursor()
cursor.execute("select * from Student_Info where id=?", (id,))
rows = cursor.fetchall()
if not rows == []:
cursor.execute("delete from Student_Info where id = ?",(id,))
msg = "学生信息成功删除"
return render_template("delete_record.html", msg=msg)
else:
msg = "该信息不能被删除"
return render_template("delete_record.html", msg=msg)
if __name__ == "__main__":
app.run(debug = True)
文件比较多,就不放到付费资源了,可以通过以下方式添加我送你,或者以上b站评论区获取,放有获取方式。安装好相关模块,即可自己运行完整项目,这就是为什么选择使用sqlite3数据库,而不是mysql原因,不需要大家再去搭建数据库环境。
三连以上的视频,加我微信:hxgsrubxjogxeeag,备注:CSDN,否则不同意。给我看三连截图。
本项目为个人的一个小作业,前路还长,且行且努力,加油!希望本项目的简单设计对你有所帮助,切勿直接抄袭提交作业。欢迎你与我交流。
——made by CSDN:川川菜鸟