我知道,可观察到的事件有时会发生。因此,我们可以订阅它并在发生此操作时获取回调。但是,为什么我需要订阅7号角的方法?这不是一个事件。我只需要调用它即可。但是如果我只是打电话的话那是行不通的。我需要在可观察对象上调用订阅以使此post方法起作用。如果这不是一个事件,为什么我需要在发布后致电订阅!!!!
使用中的方法
class A{
public:
A(int n){this->n = n;}
int n;
};
bool operator > (A* obj_1, A* obj_2){
return obj_1->n > obj_2->n;
}
在这里,我需要订阅才能使其正常工作。
addNotificationForUser(id, notification: Notification): Observable<Notification> {
return this.http.post<Notification>(this.baseURL + '/notification/add/' + id, JSON.stringify(notification), this.httpOptions);
}