Django-Oscar - 分叉嵌套应用程序

Jul*_*ian 2 django django-settings django-oscar

我在分叉属于其他 Django 奥斯卡应用程序子集的 Django 奥斯卡应用程序时遇到问题。对于我正在关注的文档/教程,请查看此处

我已经完成并成功分叉了未嵌套在其他应用程序中的应用程序,并相应地更新了我安装的应用程序。这是应用程序的子集,用于演示嵌套应用程序的一般模式

'dashboard_folder.dashboard.apps.DashboardConfig',
'oscar.apps.dashboard.reports.apps.ReportsDashboardConfig',
'oscar.apps.dashboard.offers.apps.OffersDashboardConfig',
Run Code Online (Sandbox Code Playgroud)

但是,文档(上面链接)没有明确概述如何调用嵌套应用程序。我认为它们可能会自动与它们的“父母”分叉,但是,一个简单的测试(下面的代码)证明并非如此:

如果我'oscar.apps.dashboard.reports.apps.ReportsDashboardConfig',改为 dashboard_folder.dashboard.reports.apps.ReportsDashboardConfig',

我收到以下错误:

ModuleNotFoundError: No module named 'dashboard_folder.dashboard.reports'

我想我会尝试一些关于如何调用嵌套应用程序来分叉它们的“有根据的”猜测,但是不幸的是,以下所有操作都失败了:

manage.py oscar_fork_app offers offers_folder
CommandError: There is no app with the label 'offers'

manage.py oscar_fork_app dashboard.offers offers_folder
CommandError: There is no app with the label 'dashboard.offers'

manage.py oscar_fork_app ReportsDashboard ReportsDashboard_folder
CommandError: There is no app with the label 'ReportsDashboard'

manage.py oscar_fork_app reportsdashboard ReportsDashboard_folder
CommandError: There is no app with the label 'reportsdashboard'

manage.py oscar_fork_app dashboard/reportsdashboard ReportsDashboard_folder
CommandError: There is no app with the label 'dashboard/reportsdashboard'
Run Code Online (Sandbox Code Playgroud)

任何帮助将不胜感激,我还需要再尝试几次才能通过电子邮件向 Django-oscar 寻求帮助,但也许这个问题将来会对其他人有所帮助!

编辑:

这是我的仪表板应用程序配置供参考:

import oscar.apps.dashboard.apps as apps

class DashboardConfig(apps.DashboardConfig):
    name = 'dashboard_folder.dashboard'
Run Code Online (Sandbox Code Playgroud)

所有其他 Oscar 分叉应用程序都遵循相同的一般模式。

sol*_*oke 5

你是对的,这方面的文档不是很清楚。第一个参数oscar_fork_app是您要分叉的应用程序的应用程序标签。对于顶级应用程序,这类似于offercatalogue,但对于嵌套应用程序,您需要检查apps.py该应用程序的 来查看标签。

如果你举oscar.apps.dashboard.reports.apps.ReportsDashboardConfig个例子,那么它的应用程序配置如下所示:

class ReportsDashboardConfig(OscarDashboardConfig):
    label = 'reports_dashboard'    # <--- this is important
Run Code Online (Sandbox Code Playgroud)

label是您需要用来分叉应用程序的内容。所以像这样:

python manage.py oscar_fork_app reports_dashboard path/to/your_forks_directory
Run Code Online (Sandbox Code Playgroud)

另请注意,第二个参数必须是保存所有分叉应用程序的目录顶层的路径。该目录的子目录必须与 Oscar 的应用程序结构相匹配,并且嵌套应用程序将被分叉到其中适当的嵌套目录中。

ModuleNotFoundError如果此后您仍然收到,那么很可能是因为nameOscar 自动生成的应用程序与您的项目结构不太匹配。检查此名称以查看它是否与项目中找到的模块匹配,如果不匹配则进行调整。