标签: python django api tastypie
我很难弄清楚如何提出这个问题。
我有一个模型User。目前,当我想访问特定用户时,我会转到网址:/api/v1/user/8/。虽然,所有用户都有唯一的用户名,因此我想使用网址/api/v1/user/joe/转到特定用户。
User
/api/v1/user/8/
/api/v1/user/joe/
也许有prepend_urls()的东西?
prepend_urls()
答案 0 :(得分:3)
您需要在.ppt detail_uri_name班级documentation中使用ModelResource - 示例resources.py:
.ppt
detail_uri_name
ModelResource
Meta