我想从Foursquare中获取一些信息,添加一些字段并通过django-tastypie返回它。
更新:
def obj_get_list(self, request=None, **kwargs):
near = ''
if 'near' in request.GET and request.GET['near']:
near = request.GET['near']
if 'q' in request.GET and request.GET['q']:
q = request.GET['q']
client = foursquare.Foursquare(client_id=settings.FSQ_CLIENT_ID, client_secret=settings.FSQ_CLIENT_SECRET)
a = client.venues.search(params={'query': q, 'near' : near, 'categoryId' : '4d4b7105d754a06374d81259' })
objects = []
for venue in a['venues']:
bundle = self.build_bundle(obj=venue, request=request)
bundle = self.full_dehydrate(bundle)
objects.append(bundle)
return objects
现在我得到:
{
"meta": {
"limit": 20,
"next": "/api/v1/venue/?q=Borek&near=Kadikoy",
"offset": 0,
"previous": null,
"total_count": 30
},
"objects": [
{
"resource_uri": ""
},
{
"resource_uri": ""
}]
}
有2个空对象。我应该怎么做才能填充此资源?
最佳答案
ModelResource
仅在资源背后有ORM模型时才适用。在其他情况下,您应该使用Resource
。
在ModelResource
描述中讨论了该主题,并提到了何时适合和不适合:http://django-tastypie.readthedocs.org/en/latest/resources.html#why-resource-vs-modelresource
该文档中还有整整一章,旨在提供有关如何实现非ORM数据源(在本例中为外部API)的详细信息:http://django-tastypie.readthedocs.org/en/latest/non_orm_data_sources.html