什么是 .<format> 参数?
What is .<format> argument for?
Django==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 - Displays the url routes that are defined in your project. Very crude at this point.
我用 format
关键字搜索过。但是结果与我的问题无关
是否代表?format=json
论点?
我曾尝试用 html、xml 替换 json。我在 return.
中出错
参考:
http://django-extensions.readthedocs.io/en/latest/command_extensions.html?highlight=show_urls
在那个 URL 模式中,format
是 URL 模式中的关键字参数(与查询字符串中的 ?format=json
不同)。匹配的 URL 将是:
/api/userprofiles/5.json/
Django==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 - Displays the url routes that are defined in your project. Very crude at this point.
我用 format
关键字搜索过。但是结果与我的问题无关
是否代表?format=json
论点?
我曾尝试用 html、xml 替换 json。我在 return.
中出错参考: http://django-extensions.readthedocs.io/en/latest/command_extensions.html?highlight=show_urls
在那个 URL 模式中,format
是 URL 模式中的关键字参数(与查询字符串中的 ?format=json
不同)。匹配的 URL 将是:
/api/userprofiles/5.json/