私は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)
だけでなく、データベースで更新操作も行いたいです。どうやってするの?前もって感謝します。