反转 feed url 时出现问题

发布于 2024-11-25 15:32:51 字数 432 浏览 1 评论 0原文

我正在使用开发版本。当我尝试反向查找我的 feed 的 URL 时,出现以下错误。

有人可以帮忙吗?

谢谢 konstantin

在我的 urls.py:


...
url(r'^f/blog/$', 'django.contrib.syndication.views.Feed', BlogFeed(), name='blog-feed'),
...

在我的模板中:


...
{% url blog-feed %}
...

错误:


...
Caught AttributeError while rendering: 'BlogFeed' object has no attribute 'keys'
...

I am using the development version. I get the error below when I try to reverse lookup my feed's URL.

Can anyone help please?

thanks
konstantin

in my urls.py:


...
url(r'^f/blog/

in my template:


...
{% url blog-feed %}
...

the error:


...
Caught AttributeError while rendering: 'BlogFeed' object has no attribute 'keys'
...
, 'django.contrib.syndication.views.Feed', BlogFeed(), name='blog-feed'), ...

in my template:

the error:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笔芯 2024-12-02 15:32:51

如果您的 BlogFeed 类是基于类的视图,我认为您不需要 'django.contrib.synmination.views.Feed' 部分...您的 BlogFeed 应该是它的子类。 (django 文档)

url(r'^f/blog/
, BlogFeed(), name="blog-feed"),

If your BlogFeed class is the class based view, I don't think you need the 'django.contrib.syndication.views.Feed' part... your BlogFeed should be a subclass of that. (django docs)

url(r'^f/blog/
, BlogFeed(), name="blog-feed"),

url 的第三个参数应该是一个字典。我不知道你为什么要上课。

也许你想做的是,

url(r'^f/blog/
, 'django.contrib.syndication.views.Feed', {'name_of_view_arg':BlogFeed()}, name="blog-feed"),

The third argument to url should be a dictionary. I'm not sure why you've got a class.

Maybe what you are trying to do is,

url(r'^f/blog/
, 'django.contrib.syndication.views.Feed', {'name_of_view_arg':BlogFeed()}, name="blog-feed"),
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文