1

我配置了一个简单的 API 和资源,连接到现有数据库(这就是我需要在模型上指定表名和列的原因)。我可以正常创建和列出对象。但是当我创建一个时,我永远无法正确获取 Location 标头,也无法返回创建的数据。

创建对象:

curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"system_key": "test","system_nam": "test","system_url": "https://test/test"}' http://127.0.0.1:7000/api/system/?ticket=TGT-585-d9f9effb36697401dce5efd7fc5b3de4

回复:

HTTP/1.0 201 CREATED
Date: Thu, 14 Feb 2013 18:58:17 GMT
Server: WSGIServer/0.1 Python/2.7.3
Vary: Accept
Content-Type: text/html; charset=utf-8
Location: http://127.0.0.1:7000/api/system/None/

注意 Location 标头。似乎对象已成功创建,但信息并未从数据库返回到 API,因此可以在响应中使用它。为了清楚起见,该行在 DB 表上是完美的。

如果我添加always_return_data = True我得到这个:

HTTP/1.0 400 BAD REQUEST
Date: Thu, 14 Feb 2013 19:00:32 GMT
Server: WSGIServer/0.1 Python/2.7.3
Content-Type: application/json

{"error": "The object '<system: MRMteste>' has an empty attribute 'system' and doesn't allow a default or null value."}

我的资源和模型非常简单:

资源:

class SystemResource(ModelResource):    
    class Meta:        
        list_allowed_methods = ['get', 'post']
        detail_allowed_methods = ['get', 'put','patch']

        queryset = system.objects.all()
        resource_name = 'system'
        authorization = Authorization()
        authentication = customAuth.CustomAuthentication()

    def hydrate_system_timestamp(self, bundle):        
        bundle.data['system_timestamp'] = get_now_time()
        return bundle

模型:

class system(models.Model):
    list_display = ('system_nam')
    system = models.IntegerField(primary_key=True, db_column="system_id")
    system_nam = models.CharField(max_length=50)
    system_key = models.CharField(max_length=255)
    system_url = models.CharField(max_length=100)
    is_deleted_flg = models.BooleanField()
    system_timestamp = models.DateTimeField(default=datetime.now)

    def __unicode__(self):
        return self.system_nam

    class Meta:
        db_table = "system"

文档中没有关于此的内容。有更多经验的人可以告诉我模型和资源是否正确?截至目前,我正在使用最新版本的 sweetpie 和 django。

谢谢一堆

4

2 回答 2

1

您必须在资源的元类中设置:

always_return_data = True

并尝试将您的唯一 id 字段使用默认名称 id 而不是服务。

于 2013-02-14T23:53:25.567 回答
1

其实我已经解决了这个问题。

在模型上,如果您需要像我一样定义列名,请不要在主键上使用 IntegerField。像这样做:

system = models.AutoField(primary_key=True, db_column="system_id")

sweetpie 处理新创建的对象的方式,它需要在模型上定义的自动增量,因此它知道最后创建的 ID。很好的发现,希望有一天它对某人有所帮助。

于 2013-02-15T13:02:50.407 回答