Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 blog.py template_dir = os.path.join(os.path.dirname( file ), 'templates')
^我知道这是在同一目录中搜索模板文件夹的方法,但是兄弟目录(即当前文件夹父级的其他文件夹)呢?
问题是:
当前文件 WebAppName/Backend/blog.py
我如何参考?WebAppName/前端/模板/
为了访问前端文件夹中的模板,我应该将 template_dir 更改为什么
template_dir = os.path.abspath( os.path.join(os.path.dirname(__file__), '../Frontend/templates'))