繁体   English   中英

如何更新 model 但在 Django 中返回未修改的 model?

[英]How to update a model but return unmodified model in Django?

我正在使用django-piston编写一个 RESTful Web 服务并且有问题。

在models.py中:

class Status(models.Model):
    user = models.ForeignKey(User)
    content = models.TextField(max_length=140)

class StatusReply(models.Model):
    user = models.ForeignKey(User)
    reply_to = models.ForeignKey(Status, related_name='replies')
    content = models.TextField(max_length=140)
    has_read = models.BooleanField(default=False, help_text="has the publisher of the status read the reply")

在 handlers.py 中:

class StatusHandler(BaseHandler):
    allowed_methods = ('GET', 'POST', 'DELETE' )
    model = Status
    fields = ('id', 
              ('user', ('id', 'username', 'name')), 
              'content', 
              ('replies', ('id', 
                           ('user', ('id', 'username', 'name')), 
                           'content',  
                           'has_read'),
              ),
             )

    @need_login
    def read(self, request, id, current_user): # the current_user arg is an instance of user created in @need_login
        try:
            status = Status.objects.get(pk=id)
        except ObjectDoesNotExist:
            return rc.NOT_FOUND
        else:
            if status.user == current_user: #if current_user is the publisher of the status, set all replies read
                status.replies.all().update(has_read=True)
            return status

在处理程序中,它通过 id 返回特定状态。 现在我想返回status.replies.all().update(has_read=True)之前的状态,但也要在数据库中进行更新操作。 怎么做? 提前致谢。

不确定我是否了解您的需求。 据我了解您的代码, status.replies.all().update(has_read=True)不会更改status ,只会更改回复。 如果这是真的,代码应该做你想做的事。 如果不是,您可以制作一份status副本并返回该副本:

        if status.user == current_user: 
            old_status = status.make_copy()
            status.replies.all().update(has_read=True)
            return old_status
        return status

还是您只是希望该方法提前返回并异步更新数据库? 然后你应该看看celery ,也许这个很好的解释

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM