使用flask作为开发框架,一定要按功能模块化,否则到了后面项目越大,开发速度就越慢。
1、Flask模块化结构规划
[[email protected] yangyun]# tree . ├── asset #资产功能目录 │ ├── __init__.py │ ├── models.py #资产数据库结构文件 │ └── views.py #资产视图文件 ├── user #用户功能目录 │ ├──__init__.py │ ├── models.py #用户数据库结构文件 │ └── views.py #用户视图配置文件 ├── config.py #公共配置文件 ├── requirements.txt #需要的安装包 ├── run.py #主运行文件 ├── static #静态文件目录,css,js, image等 └── templates #静态页面存放目录 ├── asset #asset功能模块页面存放目录 │ └── index.html ├── index.html #首页 └── user └── index.html
2、run.py主运行文件配置
[[email protected] yangyun]# cat run.py
from flask import Flask from asset import asset from user import user apple=Flask(__name__, template_folder=‘templates‘, #指定模板路径,可以是相对路径,也可以是绝对路径。 static_folder=‘static‘, #指定静态文件前缀,默认静态文件路径同前缀 #static_url_path=‘/opt/auras/static‘, #指定静态文件存放路径。 ) apple.register_blueprint(asset,url_prefix=‘/asset‘) #注册asset蓝图,并指定前缀。 apple.register_blueprint(user) #注册user蓝图,没有指定前缀。 if __name__==‘__main__‘: apple.run(host=‘0.0.0.0‘,port=8000,debug=True) #运行flask http程序,host指定监听IP,port指定监听端口,调试时需要开启debug模式。
3、asset功能模块配置
其它的功能模块配置相似
1) __init__.py文件配置
[[email protected] asset]# cat __init__.py
from flask import Blueprint asset=Blueprint(‘asset‘, __name__, #template_folder=‘/opt/auras/templates/‘, #指定模板路径 #static_folder=‘/opt/auras/flask_bootstrap/static/‘,#指定静态文件路径 ) import views
2) views.py文件配置
[[email protected] asset]# cat views.py
from flask import render_template from asset import asset @asset.route(‘/‘) #指定路由为/,因为run.py中指定了前缀,浏览器访问时,路径为http://IP/asset/ def index(): print‘__name__‘,__name__ returnrender_template(‘asset/index.html‘) #返回index.html模板,路径默认在templates下
3)前端页面配置
[[email protected] yangyun]# echo ‘This isasset index page...‘ >templates/asset/index.html
4、user功能模块配置
此处配置和上述asset的配置一致
1) __init__.py配置
[[email protected] yangyun]# cat user/__init__.py
from flask import Blueprint user=Blueprint(‘user‘, __name__, ) import views
2) views.py配置
[[email protected] yangyun]# cat user/views.py
from flask import render_template from user import user @user.route(‘/‘) def index(): print‘__name__‘,__name__ returnrender_template(‘user/index.html‘)
3) 静态页面配置
echo ‘This is User page....‘ >templates/user/index.html
5、requirements.txt文件配置
主要作用是记录需要的依赖包,新环境部署时安装如下依赖包即可,pip安装命令: pip install -r requirements.txt
[[email protected] yangyun]# catrequirements.txt Flask==0.10.1 Flask-Bootstrap==3.3.5.6 Flask-Login==0.2.11 Flask-SQLAlchemy==2.0 Flask-WTF==0.12
6、浏览器访问测试
后端运行程序
[[email protected] yangyun]# python run.py *Running on http://0.0.0.0:8000/ (Press CTRL+C to quit) *Restarting with stat
前端访问asset页面
前端访问user页面
为什么出现404?因为在run.py里没有指定前缀,所以url里不需要加user。
以上
时间: 2024-11-09 09:34:33