tastypie中的外键

时间:2011-04-22 14:00:24

标签: python django rest tastypie

所以,我开始使用Django的TastyPie插件为我的项目制作REST API。我正在按照我的项目开始使用入门指南,但是当我进入this point时,当我应该放入一个外键时,它开始给我一些错误。

当我做一个简单的获取时,主要是这个:

"Reverse for 'api_dispatch_detail' with arguments '()' and keyword arguments '{'pk': 246, 'api_name': 'v1', 'resource_name': 'typep'}' not found."

resources.py中的代码:

class TypeOfPlaceResource(ModelResource):

    class Meta:
        queryset = TypeOfPlace.objects.all()
        resource_name = 'typep'
        allowed_methods = ['get']

class POIResource(ModelResource):

    typep = ForeignKey(TypeOfPlaceResource, 'typep')

    class Meta:
        queryset = PointOfInterest.objects.all()
        resource_name = 'pois'
        filtering = {
            "code1": ALL,
            "code2": ALL,
        }

模特:

class TypeOfPlace (models.Model):
    name = models.CharField(max_length=100, blank=True)
    code = models.CharField(max_length=20, unique=True)

    def __unicode__(self):
        return self.name

class PointOfInterest(GeoInformation):
    name = models.CharField(max_length=100,blank=True)
    code1 = models.CharField(max_length=4,null=True, unique=True)
    code2 = models.CharField(max_length=4,null=True, unique=True)
    typep = models.ForeignKey(TypeOfPlace)

    def __unicode__(self):
        return self.name

urls.py

api = Api(api_name='v1')
api.register(TypeOfPlaceResource(), canonical=True)
api.register(POIResource(), canonical=True)

urlpatterns = api.urls

那么,我做错了吗?还是错过了什么?任何帮助将非常感激 ! :d

2 个答案:

答案 0 :(得分:3)

我的问题的最终答案是来自@manji和@dlrust的答案:

“将urlpatterns值更改为urlpatterns = patterns('', (r'^api/', include(api.urls)),)

然后,“在Meta中为资源定义授权”。

希望它对其他人有用,因为它适合我:)

答案 1 :(得分:1)

看起来你的urlpatterns可能会被覆盖。

urlpatterns += api.urls;

是否像这项工作一样添加+=?似乎通过直接分配到urlpatterns,您可能会意外地破坏您所拥有的任何旧任务。