当用户向图像添加评论时,
包括图像作者在内的一些用户会通过推送通知得到通知。
我让它在常规视图中工作。
现在我采用了美味的框架,并转换了这个视图。
class CommentResource(ModelResource):
..
def obj_create(....):
#send notifications
#actually create the comment object
在 API 中感觉很奇怪sending notifications
,所以我问这是否是一种很好的做法。