美文网首页
2020-06-05号的工作内容

2020-06-05号的工作内容

作者: 林木木_f297 | 来源:发表于2020-06-07 15:54 被阅读0次

    2020-6-5日工作内容

    主要工作内容

    • 基于bootstrap,制作web基本显示页面
    • 基于flask,搭建后台,测试页面是否正常使用

    具体代码

    • web页面
      代码太长这里不做展示,主要使用他的布局方式
    • 后台
    from flask import Flask ,jsonify,render_template,url_for,redirect,abort, request
    from flask_sqlalchemy import *
    
    app = Flask('kkk')
    @app.route('/hello', methods=['GET', 'POST'])
    def test1():
        return "test.html"
    
    
    app.run()
    

    测试结果

    后台
    web

    相关文章

      网友评论

          本文标题:2020-06-05号的工作内容

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