當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Rx.Observer類代碼示例

本文整理匯總了TypeScript中rxjs/Rx.Observer的典型用法代碼示例。如果您正苦於以下問題:TypeScript Observer類的具體用法?TypeScript Observer怎麽用?TypeScript Observer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Observer類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: Notification

        return this._http.post(this._apiBaseUrl, _n, { headers: headers }).map(response => response.json()).subscribe(data => {
            this._dataStore.tracks.push(data[0]);
            this._tracksObserver.next(this._dataStore.tracks);
            this._newestTrackObserver.next(data[0]);

            let trName = data[0].trackname;
            this._notes.add(new Notification('info', trName + ' bætt við.'));
        }, error => { this._notes.add(new Notification('error', 'Ekki tókst að tengjast gagnagrunni. Lagi ekki bætt við.')); });
開發者ID:kiddieverts,項目名稱:hl,代碼行數:8,代碼來源:track.service.ts

示例2:

 let obs: Observable<any> = Observable.create((observer: Observer<any>) => {
   if (user.Email == "arun.thakur@mail.com" && user.Password == "123456") {
     observer.next(true);
   }
   else {
     observer.error("Invalid Credentials");
   }
   observer.complete();
   //return () => { console.log("disposable called..."); }; //dispose observable
 });
開發者ID:thakurarun,項目名稱:listit,代碼行數:10,代碼來源:userService.ts

示例3:

 (observer: Observer<any>) => {
   if (!this.needsUpdate(url)) {
     observer.next(this.cacheMap[url].data);
     observer.complete();
   }
   this.call("get", url).subscribe(
     res => {
       this.storeData(url, res.json());
       observer.next(this.cacheMap[url].data);
       observer.complete();
     }
   );
 }
開發者ID:audifaxdev,項目名稱:ng2-restservice,代碼行數:13,代碼來源:RestService.ts

示例4: Notification

        this._http.get(_url).map(response => response.json()).subscribe(data => {

            // Set selectedProject
            this._dataStore.selectedProject = data[0];
            this._selectedProjectObserver.next(this._dataStore.selectedProject);

        }, error => { this._notes.add(new Notification('error', 'Ekki tóst að sækja verkefni í gagnagrunninn.')); });
開發者ID:kiddieverts,項目名稱:hl,代碼行數:7,代碼來源:project.service.ts

示例5: Notification

        this._http.delete(_url).subscribe(response => {
            // DELETE CREDITS FROM DATA STORE AND PUSH IT TO THE STREAM

            this._dataStore.credits = this._dataStore.credits.filter(credit => credit.projecttrackid !== track.id);
            this._creditsObserver.next(this._dataStore.credits);

        }, error => { this._notes.add(new Notification('error', 'Ekki tókst að ná eyða flytjanda.')); });
開發者ID:kiddieverts,項目名稱:hl,代碼行數:7,代碼來源:credit.service.ts

示例6:

 position => {
   const coordinate: Coordinate = {
     latitude: position.coords.latitude,
     longitude: position.coords.longitude
   };
   observer.next(coordinate);
   observer.complete();
 },
開發者ID:cristianrgreco,項目名稱:nearby-pokemon,代碼行數:8,代碼來源:location.service.ts

示例7:

 xhr.onreadystatechange = () => {
   if (xhr.readyState === 4) {
     if (xhr.status === 200) {
       observer.next("test");
       observer.complete();
     } else {
       observer.error(xhr.response);
     }
   }
 };
開發者ID:icebluetech,項目名稱:process-improvement-app,代碼行數:10,代碼來源:data.ts

示例8:

			}).then((cmpRef: ComponentRef<TooltipComponent>) => {
				// Store reference to TooltipComponent
				this._toolTipCmp = cmpRef;

				// Append it to DOM
				this.viewContainer.element.nativeElement.appendChild(cmpRef.location.nativeElement);

				// Resolve the component
				observer.next(this._toolTipCmp);
				observer.complete();
			});
開發者ID:cviccaro,項目名稱:jpa-admin,代碼行數:11,代碼來源:provider.ts

示例9: function

 req.onload = function() {
     if (req.status == 200) {
     // If the status is 200, meaning there have been no problems,
     // Yield the result to listeners and complete the sequence
         observer.next(req.response);
         observer.complete();
     }
     else {
     // Otherwise, signal to listeners that there has been an error
         observer.error(new Error(req.statusText));
     }
 };
開發者ID:MOHAMMADArsalan,項目名稱:learn-typed-rxjs,代碼行數:12,代碼來源:main.ts

示例10:

                        Observable.forkJoin(fetchPages).subscribe(datas => {
                            let dataArray: any = datas;
                            dataArray.forEach((data: any) => {
                                comments = comments.concat(data.values);
                            },
                                (err: any) => {
                                    observer.error(err);
                                });

                            let modelComments: Comment[] = comments.map((jsonComment: any) => {
                                console.log(jsonComment);
                                let content: CommentContent = {
                                    html: jsonComment.content.html,
                                    markup: jsonComment.content.markup,
                                    raw: jsonComment.content.raw
                                };
                                let author: User = {
                                    userName: jsonComment.user.username,
                                    displayName: jsonComment.user.display_name,
                                    uuid: jsonComment.user.uuid
                                };
                                let comment: Comment = {
                                    content: content,
                                    author: author
                                };
                                return comment;
                            });

                            // Return the result to the observers
                            observer.next(modelComments);
                        },
開發者ID:vnctaing,項目名稱:stethoscope,代碼行數:31,代碼來源:bitbucket.service.ts


注:本文中的rxjs/Rx.Observer類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。