经过otree调查之后,我首先对另一个django应用(特别是django-oscar商店)进行子处理。它在另一个端口上运行。 现在,我想将调查中的一些数据(第一个应用程序,otree)传递到商店(第二个应用程序,django-oscar)。
我在app2 / views.py中尝试过:
from survey.models import Player
class CatalogueView(TemplateView):
"""
Browse all products in the catalogue
"""
model = Player
context_object_name = "products"
template_name = 'catalogue/browse.html'
但是我只是得到这个错误:
ModuleNotFoundError:没有名为“ otree”的模块
我还尝试导入otree.api
,并将otree
放入installed_apps
。
任何想法,如何处理?