我正在使用Disqus評論我的django網站。當有人在他們的帖子上發表評論時,我正試圖向用戶發送郵件。所以我需要以下信息:獲取評論是否是父母或不在Django網站上的公司
- 發表作者
- 發佈網址
- 評論作者
- 評論父
我已經能夠率先拿到3:
this.callbacks.onNewComment = [function(comment) {
var u = "{{ user.username }}";
alert(u);
alert("{{question.user}}");
alert(getCurrentURL());//This function returns the current URL
//Now we can call a server side function with all the data which will send the mails
}];
但是,我無法跟蹤該評論是否是家長評論。如果它是一個家長評論,那麼我不需要任何額外的信息,但如果該評論是對其他評論的回覆,那麼我需要該父評論用戶以及我也可以向他們發送郵件。任何想法如何做,即獲得父母評論的信息。
感謝