如何制作 RSS 提要,其中 /rss/ 位于 URL 末尾而不是开头?

发布于 2024-08-16 21:40:04 字数 502 浏览 5 评论 0 原文

http://docs.djangoproject.com/en/dev/ref/contrib /syndicate/ 描述了使用 Feeds 类的方法,它对我来说效果很好,但它要求 URL 类似于 http://example.com/rss/feedid/parameters/

我需要它是 http://example.com/feedid/parameters/rss/

如何做到这一点?

http://docs.djangoproject.com/en/dev/ref/contrib/syndication/ describes the way to use the Feeds class, and it works well for me, but it requires the URL to be like http://example.com/rss/feedid/parameters/

I need it to be http://example.com/feedid/parameters/rss/

How to do that?

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

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

发布评论

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

评论(1

唯憾梦倾城 2024-08-23 21:40:04

由于 Django 的 URL 基于正则表达式,我认为您可以使用这样的规则:

(r'^(?P<url>.*)/rss/

虽然就我个人而言,我从未使用过 Django 联合框架 - 我只是将通用视图(或通用视图的包装器)与 content_type< /code> 选项,并使用模板生成 RSS/Atom。

, 'django.contrib.syndication.views.feed', {'feed_dict': feeds}),

虽然就我个人而言,我从未使用过 Django 联合框架 - 我只是将通用视图(或通用视图的包装器)与 content_type< /code> 选项,并使用模板生成 RSS/Atom。

Since Django's URLs are based on regexes, I think that you can use a rule like this:

(r'^(?P<url>.*)/rss/

Though personally, I have never used the Django syndication framework - I just use generic views (or wrappers around generic views) with the content_type option, and generate the RSS/Atom with a template.

, 'django.contrib.syndication.views.feed', {'feed_dict': feeds}),

Though personally, I have never used the Django syndication framework - I just use generic views (or wrappers around generic views) with the content_type option, and generate the RSS/Atom with a template.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文