博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[RxJS] Creation operator: of()
阅读量:5163 次
发布时间:2019-06-13

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

RxJS is a lot about the so-called "operators". We will learn most of the important operators, one by one. In this lesson, we will see our first creation operator: of().

 

var foo = Rx.Observable.of(42, 100, 200);// var bar = Rx.Observable.create(function (observer) {
// observer.next(42);// observer.next(100);// observer.next(200);// observer.complete();// });foo.subscribe(function (x) { console.log('next ' + x);}, function (err) { console.log('error ' + err);}, function () { console.log('done');});/*"next 42""next 100""next 200""done"*/

 

转载于:https://www.cnblogs.com/Answer1215/p/5376821.html

你可能感兴趣的文章
Linux如何更新软件源
查看>>
SQL使用CASE 语句
查看>>
day8 (异常处理和网络编程)
查看>>
php中函数 vsprintf() 和 var_export()
查看>>
github 入门教程之 github 访问速度太慢怎么办
查看>>
多线程(1)—单线程
查看>>
HTML5权威指南 16.拖放API与通知API
查看>>
NYOJ-289 苹果 又是一个典型的01背包和上题一样没啥好说的
查看>>
HDU 2262 回溯算法 递归枚举
查看>>
九度0J 1374 所有员工年龄排序
查看>>
查询某端口的连接数
查看>>
listview初始化后仍为空
查看>>
无刷新分页
查看>>
SIFT算法
查看>>
git各种撤销操作
查看>>
每天努力一点之SQL
查看>>
UINavigationBar-使用总结
查看>>
夺命雷公狗jquery---11属性操作
查看>>
linux 常用命令
查看>>
display属性和属性值(18个属性值,常见面试题)
查看>>