博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular 2] Rendering an Observable with the Async Pipe
阅读量:6848 次
发布时间:2019-06-26

本文共 508 字,大约阅读时间需要 1 分钟。

Angular 2 templates use a special Async pipe to be able to render out Observables. This lesson covers the syntax used to create an Observable in Angular 2 and then to render it out in the template.

 

import {Component} from 'angular2/core';import {bootstrap} from 'angular2/platform/browser';import {Observable} from 'rxjs/Observable';import 'rxjs/add/observable/interval'@Component({    selector: 'app',    template: `

{
{clock | async}}

`})class App { clock = Observable.interval(1000);}bootstrap(App);

 

转载地址:http://xgoul.baihongyu.com/

你可能感兴趣的文章
aix5.1 5.2 5.3 6.1 7.1运维技术总结
查看>>
[ubuntu Setup] ubuntu 14.10 安装 JDK
查看>>
fork与vfork
查看>>
Make a printer-port EEPROM programmer and dongle
查看>>
Windows 商店应用中使用 SharePoint REST API
查看>>
《BI那点儿事》数据流转换——数据转换
查看>>
重新操刀开发一个软件的碎碎念
查看>>
《objective-c基础教程》学习笔记(八)—— 拆分接口和实现
查看>>
GridView导出Excel的超好样例
查看>>
android IO流操作文件(存储和读取)
查看>>
cc150:实现一个算法来删除单链表中间的一个结点,仅仅给出指向那个结点的指针...
查看>>
Linux命令学习总结:cp命令
查看>>
【转】linux驱动程序中的并发控制
查看>>
ORACLE中%TYPE和%ROWTYPE的使用
查看>>
Android性能优化工具之Systrace
查看>>
模板方法模式
查看>>
微信公众平台开发(一) 配置接口
查看>>
tiny4412 串口驱动分析六 --- TTY驱动架构
查看>>
Android ImageView的scaleType属性与adjustViewBounds属性
查看>>
tree的所有节点都勾选上或者取消勾选
查看>>