什么是。<format>争论?

时间:2017-11-14 08:57:25

标签: python django django-extensions

的Django == 1.11
django的的扩展== 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

1 个答案:

答案 0 :(得分:1)

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

/api/userprofiles/5.json/