使用flask作为开发框架,一定要按功能模块化,否则到了后面项目越大,开发速度就越慢。
10年积累的网站设计制作、成都网站建设经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有达州免费网站建设让你可以放心的选择与我们合作。[root@yang-218 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, p_w_picpath等 └── templates #静态页面存放目录 ├── asset #asset功能模块页面存放目录 │ └── index.html ├── index.html #首页 └── user └── index.html
[root@yang-218 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模式。
其它的功能模块配置相似
1) __init__.py文件配置
[root@yang-218 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文件配置
[root@yang-218 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)前端页面配置
[root@yang-218 yangyun]# echo 'This isasset index page...' >templates/asset/index.html
此处配置和上述asset的配置一致
1) __init__.py配置
[root@yang-218 yangyun]# cat user/__init__.py
from flask import Blueprint user=Blueprint('user', __name__, ) import views
2) views.py配置
[root@yang-218 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
主要作用是记录需要的依赖包,新环境部署时安装如下依赖包即可,pip安装命令: pip install -r requirements.txt
[root@yang-218 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
后端运行程序
[root@yang-218 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。
以上
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。