我试图弄清楚如何指定 html 模板和静态文件的位置,例如 Flask 的 javascript 文件。
我目前有一个结构允许像这样加载模块
/wsgi
/templates
/login.html
/logout.html
/menu.html
/static
/modules
/helloworld
/module.html
/module.json
/module.js
我希望能够直接使用模板加载例如 Javascript 文件,而无需将其移动到静态文件夹。
理想情况下,我想做这样的事情
moduleHtml = render_template(moduleHtmlPath)
并在模板内
<script type=text/javascript src="{{ url_for('myModule', filename='module.js') }}"></script>