如何制作 RSS 提要,其中 /rss/ 位于 URL 末尾而不是开头?
http://docs.djangoproject.com/en/dev/ref/contrib /syndicate/ 描述了使用 Feeds 类的方法,它对我来说效果很好,但它要求 URL 类似于 http://example.com/rss/feedid/parameters/
我需要它是 http://example.com/feedid/parameters/rss/
如何做到这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 Django 的 URL 基于正则表达式,我认为您可以使用这样的规则:
虽然就我个人而言,我从未使用过 Django 联合框架 - 我只是将通用视图(或通用视图的包装器)与
content_type< /code> 选项,并使用模板生成 RSS/Atom。
Since Django's URLs are based on regexes, I think that you can use a rule like this:
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.