加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
各模块下的init.txt 2.76 KB
一键复制 编辑 原始数据 按行查看 历史
xinban 提交于 2021-11-15 21:09 . first
### account
# 项目应用名称将显示在后台系统的首页
# 应用程序配置对象存储了应用的元数据。某些属性可以在 AppConfig 的子类中配置
from django.apps import AppConfig
import os
# 修改app在admin后台显示的名称
# default_app_config的值来自apps.py的类名
default_app_config = 'account.IndexConfig'
# 获取当前app的命名
def get_current_app_name(_file):
return os.path.split(os.path.dirname(_file))[-1]
# 重写类IndexConfig
class IndexConfig(AppConfig):
name = get_current_app_name(__file__)
verbose_name = '用户管理'
### album 原来就是标题小字
from django.apps.config import AppConfig
import os
default_app_config = 'album.IndexConfig' # 文件名.IndexConfig
# 获取当前app命名
def get_current_app_name(_file):
return os.path.split(os.path.dirname(_file))[-1]
# 重写类
class IndexConfig(AppConfig):
name = get_current_app_name(__file__)
verbose_name = '我的图片墙'
### article
from django.apps.config import AppConfig
import os
default_app_config = 'article.IndexConfig'
def get_current_app_name(__file):
return os.path.split(os.path.dirname(__file))[-1]
# 重写类IndexConfig
class IndexConfig(AppConfig):
name = get_current_app_name(__file__)
verbose_name = '博客管理'
### interflow
from django.apps.config import AppConfig
import os
default_app_config = 'interflow.IndexConfig'
def get_current_name(__file): # 获取名字,为啥,为啥要为类使用
os.path.split(os.path.dirname(__file__))[-1]
class IndexConfig(AppConfig): # 重写类,为啥
name = get_current_name(__file__)
verbose_name = '留言管理'
###
### 加上去又被报错
### article
from django.apps.config import AppConfig
import os
default_app_config = 'article.IndexConfig'
def get_current_app_name(__file):
return os.path.split(os.path.dirname(__file))[-1]
# 重写类IndexConfig
class IndexConfig(AppConfig):
name = get_current_app_name(__file__)
verbose_name = '博客管理'
### album 原来就是标题小字
from django.apps.config import AppConfig
import os
default_app_config = 'album.IndexConfig' # 文件名.IndexConfig
# 获取当前app命名
def get_current_app_name(_file):
return os.path.split(os.path.dirname(_file))[-1]
# 重写类
class IndexConfig(AppConfig):
name = get_current_app_name(__file__)
verbose_name = '我的图片墙'
### 那报错关键是interflow文件下的
### interflow
from django.apps.config import AppConfig
import os
default_app_config = 'interflow.IndexConfig'
def get_current_name(__file): # 获取名字,为啥,为啥要为类使用
os.path.split(os.path.dirname(__file__))[-1]
class IndexConfig(AppConfig): # 重写类,为啥
name = get_current_name(__file__)
verbose_name = '留言管理'
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化