老师 按照你的操作 静态文件我都加载不出来

来源:5-1 管理员登录和列表页面

慕慕3583558

2019-10-22

class Application(Flask):
def init(self,import_name,template_folder = None,root_path = None):
super(Application,self).init(import_name,template_folder=template_folder,root_path=root_path,static_folder = None)
self.config.from_pyfile(‘config/base_setting.py’)

    if 'ops_config' in os.environ:
        self.config.from_pyfile('config/%s_setting.py'%os.environ['ops_config'])

    db.init_app(self)

db = SQLAlchemy()
app = Application(name,template_folder=os.getcwd()+’/web/templates/’,root_path=os.getcwd())

manager = Manager(app)

‘’’

函数模版
’’'
from common.libs.UrlManager import UrlManage
app.add_template_global(UrlManage.buildStaticUrl,‘buildStaticUrl’)
app.add_template_global(UrlManage.buildUrl,‘buildUrl’)

写回答

1回答

编程浪子

2019-10-24

你好

你截图这个只是框架加载视图层的。加载静态文件需要单独

https://git.imooc.com/coding-265/coding-265/src/master/%e5%ae%8c%e6%95%b4%e6%ba%90%e7%a0%81/web/controllers/static.py 

//img.mukewang.com/szimg/5db18d5b09430ee620600658.jpg

0
0

Python Flask构建微信小程序订餐系统(可用于毕设)

微信小程序 + Python Flask 打造订餐系统全栈应用,可用于毕设。

1709 学习 · 1889 问题

查看课程