0
  • 姜戈==1.11

  • django-extensions==1.9.7

    /api/userprofiles/<pk>/   poinkbackend.apps.userprofiles.api.viewsets.UserProfileViewset  api:userprofile-detail
    /api/userprofiles/<pk>\.<format>/ poinkbackend.apps.userprofiles.api.viewsets.UserProfileViewset  api:userprofile-detail
    /a
    

文件说

show_urls - 显示项目中定义的 url 路由。在这一点上非常粗糙。

我用format关键字搜索过。但结果与我的问题无关。

它代表?format=json争论吗?

我曾尝试用 html、xml 替换 json。我得到了错误的回报。

参考: http ://django-extensions.readthedocs.io/en/latest/command_extensions.html?highlight=show_urls

4

1 回答 1

1

在该 URL 模式中,format是 URL 模式中的关键字参数(与?format=json它在查询字符串中的位置不同)。匹配的 URL 将是:

/api/userprofiles/5.json/
于 2017-11-14T09:22:23.183 回答