【发布时间】:2011-10-19 05:32:34
【问题描述】:
我在我的 django 应用程序中使用了美味的派,我试图让它映射像“/api/booking/2011/01/01”这样的 URL,它映射到 URL 中具有指定时间戳的 Booking 模型。文档没有说明如何实现这一点。
【问题讨论】:
我在我的 django 应用程序中使用了美味的派,我试图让它映射像“/api/booking/2011/01/01”这样的 URL,它映射到 URL 中具有指定时间戳的 Booking 模型。文档没有说明如何实现这一点。
【问题讨论】:
你想要在你的资源中做的是提供一个
def prepend_urls(self):
return [
url(r"^(?P<resource_name>%s)/(?P<year>[\d]{4})/(?P<month>{1,2})/(?<day>[\d]{1,2})%s$" % (self._meta.resource_name, trailing_slash()), self.wrap_view('dispatch_list_with_date'), name="api_dispatch_list_with_date"),
]
方法,它返回一个 url,它指向一个视图(我将其命名为 dispatch_list_with_date),它可以执行您想要的操作。
例如,在 base_urls 类中,它指向一个名为“dispatch_list”的视图,该视图是列出资源的主要入口点,您可能只想通过自己的过滤来复制它。
您的视图可能与此非常相似
def dispatch_list_with_date(self, request, resource_name, year, month, day):
# dispatch_list accepts kwargs (model_date_field should be replaced) which
# then get passed as filters, eventually, to obj_get_list, it's all in this file
# https://github.com/toastdriven/django-tastypie/blob/master/tastypie/resources.py
return dispatch_list(self, request, resource_name, model_date_field="%s-%s-%s" % year, month, day)
真的,我可能只是将filter 添加到普通列表资源中
GET /api/booking/?model_date_field=2011-01-01
您可以通过向 Meta 类添加过滤属性来获得此功能
但这是个人喜好。
【讨论】:
prepend_urls。