Django-lettuce:保存语言文件的位置
我已将生菜添加到我的 django 项目中,将 languages.py 文件保存在 django 项目中的何处而不是修改生菜本身?
苏丹
I've added lettuce into my django project, where to keep the languages.py
file in django project instead of modifying lettuce itself?
Sultan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道生菜,但我猜你可以将文件
languages.py 包含在 python 可以找到的任何地方。
我通过将包含文件的目录附加到 sys.path 中来实现此目的。您可以改为覆盖 PYTHONPATH。包含 python 代码的目录应该有一个
__init__.py
文件。我不确定您是否已经尝试过上述操作。如果你这样做了,你可以忽略我的回答。
I do not know of lettuce, but I am guessing that you can include your file
languages.py
anywhere python can find it.I do this by appending the directory containing my files into
sys.path
. You could overwrite PYTHONPATH instead. A directory containing python code should have a__init__.py
file.I am not sure if you already tried the above. If you did, you can ignore my answer.