向 Django 生成的 URL 添加任意扩展名

发布于 2024-08-22 11:07:51 字数 98 浏览 5 评论 0原文

Django 具有出色的 URLConf 和 URL 反向映射/匹配功能。我正在寻找一个技巧/技巧来向 Django 生成的 URL 添加任意扩展名。有时很高兴看到推荐您品牌的扩展。

Django has excellent URLConf and URL reverse mapping/matching. I'm looking for a tip/trick to add arbitrary extensions to URLs generated by Django. Sometimes it's nice to see extensions that suggest your brand.

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

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

发布评论

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

评论(1

海夕 2024-08-29 11:07:51

好的,假设我想发布一些 HTML、PDF、DOC 等格式的文档。 urlconf 中的模式如下所示:

(r"^/docs/(?P<doc_slug>[\w-]+).(?P<ext>\w+)$", myapp.views.view_doc),

视图:

def view_doc(request, doc_slug, ext):
    if ext == "html":
        #...
    elif ext == "pdf":
        #...
    else:
        return Http404("Document not available in this format")

OK, let's assume I want to publish some documents which are available in HTML, PDF, DOC, etc formats. The pattern in urlconf would look like this:

(r"^/docs/(?P<doc_slug>[\w-]+).(?P<ext>\w+)$", myapp.views.view_doc),

and the view:

def view_doc(request, doc_slug, ext):
    if ext == "html":
        #...
    elif ext == "pdf":
        #...
    else:
        return Http404("Document not available in this format")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文