當用戶向圖像添加評論時,某些用戶(包括圖像的作者)會通過推送通知得到通知。訪問api時發送通知頁面
我讓它定期工作。
現在我正在採用tastypie框架,並轉換此視圖。
class CommentResource(ModelResource):
..
def obj_create(....):
#send notifications
#actually create the comment object
它只是感覺怪怪的具有API sending notifications
,所以我問 ,如果這是一個很好的做法。