• flask项目起步(1)


    flask项目起步

    包含项目目录结构、基本配置、主要架构的搭建

    配置文件

    Alt

    1. 基本配置文件 ,在项目根目录下创建的 config.py 和 secure.py 文件。config文件放可公开的配置,secure文件方类似数据库密码等不可公开的配置信息。

    2. 从入口文件开始,即app.py文件,在这个文件中,只做实例化flask对象和启动这个flask对象;

      from web import create_app
      
      app = create_app()
      
      if __name__ == '__main__':
         # 这里使用 app.config[''] 能获取到值,是要将配置信息注册到 app 的前提下
         app.run(debug=app.config['DEBUG'], port=app.config['PORT'])
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7

      在这里我们将创建 flask 实例对象封装到 create_app 函数中,写到 web 目 录下的"_ init _.py"文件中。


      from flask import Flask
      
      def create_app():
      	app = Flask(__name__)
      	# 在这里将配置信息注册到了 app 中
      	app.config.from_object('web.secure')
      	return app
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7

      app/web/secure.py

      DEBUG = True
      PORT = 9303
      # cymysql 数据库驱动需要手动安装,并保证常量名 SQLALCHEMY_DATABASE_URI 固定不变,数控库信息才会在 app.config.form__object('web.secure') 时注册到 app对象中。
      SQLALCHEMY_DATABASE_URI ='mysql+cymysql://root:root@localhost:3306/web'
      
      • 1
      • 2
      • 3
      • 4
    3. blueprint 蓝图,引入蓝图是为了不把所有的 Controller 路由都写在 app.py 这个启动文件内,app.py 只做入口文件的内容。而蓝图应该放在我们项目的二级机构层中(www.mysite.site/user 用户相关模块,www.mysite.site/article 文章相关模块),进行同一模块的路由操作就显得更合理,结构也更清晰。
      web/manage/blueprint.py

      from flask import Blueprint
      
      # 创建蓝图
      manage = Blueprint('manage', __name__)
      
      • 1
      • 2
      • 3
      • 4

      蓝图的注册放到web/'_ init _ .py’中的 create_app() 中:

      from web.manage.bluepring import manage
      from flask import Flask
      
      
      # 注册蓝图的方法
      def register_blueprint(app):
         app.register_blueprint(manage)
         # app.register_blueprint(blueprint_name) 注册其他的蓝图
      
      
      def create_app():
         app = Flask(__name__)
         app.config.from_object('web.secure')
         register_blueprint(app)
         return app
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 14
      • 15
    4. 使用蓝图注册路由
      web/manage/user

      from web.manage.blueprint import manage
      
      @manage.route('/user/all')
      def users():
      	return '用户页面'
      
      • 1
      • 2
      • 3
      • 4
      • 5

      此时我们启动 app.py 发现路由并没有生效,是因为我们并没有显式导入这个文件,所以要在 web/manage/_ init _.py中引入这个文件。

      from web.manage import user
      
      • 1

      _ init_.py 文件的作用是将文件夹变为一个Python模块,Python 中的每个模块的包中,都有__init__.py 文件。
      通常__init__.py 文件为空,但是我们还可以为它增加其他的功能。我们在导入一个包时,实际上是导入了它的__init__.py文件。这样我们可以在__init__.py文件中批量导入我们所需要的模块,而不再需要一个一个的导入。

  • 相关阅读:
    一文看懂推荐系统:物品冷启01:优化目标 & 评价指标
    酒水销售系统
    JVM运行时数据 堆
    记一次 .NET 某拍摄监控软件 卡死分析
    EPICS base macLib库解析与测试
    【20220121】Voice conversion
    pmp新考纲全真模拟题,提分敏捷+情景!
    Netty初探
    vscode交叉编译cmake工程,toolchains设置
    Go-Excelize API源码阅读(九)——SetSheetBackground(sheet, picture string)
  • 原文地址:https://blog.csdn.net/qq_25695065/article/details/127699971