当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Observer.next方法代码示例

本文整理汇总了TypeScript中rxjs/Rx.Observer.next方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Observer.next方法的具体用法?TypeScript Observer.next怎么用?TypeScript Observer.next使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在rxjs/Rx.Observer的用法示例。


在下文中一共展示了Observer.next方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: 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

示例3: 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

示例4:

                        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

示例5: Question

 this._communicationService.roomChannel.on("new_question", msg => {
     let newQuestion = new Question();
     newQuestion.id = msg.question_id;
     newQuestion.order = msg.order;
     newQuestion.text = msg.question;
     
     let answers = new Array<Answer>();
     
     let answerA = new Answer();
     answerA.selector = "A";
     answerA.text = msg.a;                        
     answers.push(answerA);
     
     let answerB = new Answer();
     answerB.selector = "B";
     answerB.text = msg.b;                        
     answers.push(answerB);
     
     let answerC = new Answer();
     answerC.selector = "C";
     answerC.text = msg.c;                        
     answers.push(answerC);
     
     let answerD = new Answer();
     answerD.selector = "D";
     answerD.text = msg.d;                        
     answers.push(answerD);
     
     newQuestion.answers = answers;
     this._question = newQuestion;
     
     // Push the question down to the observable.
     this._questionObserver.next(this._question);
 });
开发者ID:Rumel,项目名称:bluesky,代码行数:34,代码来源:trivia.service.ts

示例6: joinRoom

 joinRoom(room: any) {
     // Switch from the lobby to a specific room.
     this._communicationService.changeRoomChannel(room, this._playerService.getPlayerName());
     this._selectedRoom = room;
     
     // Tell the subscribers the room has changed.
     this._roomObserver.next(this._selectedRoom);  
 } 
开发者ID:Rumel,项目名称:bluesky,代码行数:8,代码来源:room.service.ts

示例7: Date

				data => {
					console.log("refreshGoods, got data, now = " + new Date().toTimeString());
					this._dataStore.goods = data;
					if (this._goodsObserver) {
						console.log("refreshGoods, inform to observers, now = " + new Date().toTimeString());
						this._goodsObserver.next(this._dataStore.goods);
					}
				},
开发者ID:Dis1092006,项目名称:B2B_Portal,代码行数:8,代码来源:goods.service.ts

示例8:

 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


注:本文中的rxjs/Rx.Observer.next方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。