abspath定义Django

时间:2015-08-31 14:22:50

标签: django django-settings

Django项目的settings.py中这两者之间有什么区别

BASE_DIR = os.path.dirname(os.path.dirname(__file__))

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

1 个答案:

答案 0 :(得分:2)

函数abspath将从root创建一个干净的目录名。例如,../dir可能会转换为/path/to/dir(或C:\... for Windows)。

然而,双dirname次调用似乎没用。