我希望能够使用带有querysting的rss feed。例如example.com/rss/bbox?=39.715056,-75.811158,39.5098,-75.491781
答案 0 :(得分:1)
get_object
方法传递request
,然后您可以提取GET参数。
def get_object(self, request, *args, **kwargs):
bounds = request.GET.get("bbox")
bbox = _str_to_bbox(bounds)
....
return Obj
然后可以在items
和大多数Feed类的方法中使用返回的对象