将 django 与 django-lfs 集成
我尝试像 django 应用程序一样集成 django-ifs,而不使用 buildout。现在我可以在syncdb django创建所有模型后启动服务器。我可以管理商店,添加产品,但是当我尝试在页面上显示产品时。其显示
异常值:渲染时捕获 AttributeError:“Shop”对象没有属性“content_type”
异常位置:/home/siraset/works/env-brille/lib/python2.6/site-packages/django_portlets-1.0b2-py2.6.egg/portlets/templatetags/portlets_tags.py 在 portlet_slot,第 21 行
I try to integrate django-ifs like a django app without using buildout. Now I can start server by after syncdb django create all model. I can manage shop , add product BUT when I try to display product on page.Its display
Exception Value:Caught AttributeError while rendering: 'Shop' object has no attribute 'content_type'
Exception Location:/home/siraset/works/env-brille/lib/python2.6/site-packages/django_portlets-1.0b2-py2.6.egg/portlets/templatetags/portlets_tags.py in portlet_slot, line 21
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 Django portlet 的源代码,您会发现这部分在新版本中已更改!之前它使用 object'c 内容类型作为缓存键,但我认为并非每个模型都应该有引用 ContentType,因此他们更改了它: http://bitbucket.org/diefenbach/django-portlets/diff/portlets/templatetags/portlets_tags.py? diff2=796ee52ef3d1&diff1=791c36e884ff
因此,请查看更新版本!
If you look at Django portlet's source, you will see that this part has changed in a newer version! It was using an object'c content type as a cache key before, but i assume not every model should have a reference ContentType, so they changed it: http://bitbucket.org/diefenbach/django-portlets/diff/portlets/templatetags/portlets_tags.py?diff2=796ee52ef3d1&diff1=791c36e884ff
So check out a newer version!