首页 > 代码库 > python编写简单的html登陆页面(3)

python编写简单的html登陆页面(3)

1  在python编写简单的html登陆页面(2)的基础上在延伸一下:

可以将静态分配数据,建立表格,存放学生信息

技术分享

2  加载到静态数据

技术分享

3  html的编写直接在表格里添加一组数据就行了

技术分享

 

4  VS Code上面跟前面的后台类似,添加一个content再链接到html就可以了

 

@app.route(‘/content‘)
def content():
return render_template(‘content.html‘)
return ‘content.....‘

 

python编写简单的html登陆页面(3)