1. Installation
# Install typescript, rxjs packagenpm install -D typescript @types/node npm install rxjs
2. Use
2.1 Use from to generate source from array
RxJS has many methods to create sources, such as from, fromEvent..., here is an example
import {from} from 'rxjs' // Generate subscribeable objects from array// The object type of obser is Observablelet obser = from([1,2,3,4,5]) // Consumption objects// next When there is a value flowing in the pipeline, it will start next// When an error occurs, an error will be triggered// When the array is completed, complete will be called({ next(item) { (item) }, error(err) { (err) }, complete() { ("Done") } }
2.2 Customize the source of the generation
import {Observable, from} from 'rxjs' // Create a new subscribeable objectlet obser = new Observable<string>(productor => { // Customize data flow ("hello") ("world") setTimeout(()=>{ ("After 1 Sec") () }, 1000) }) // Consumption({ next(item) { (item) }, error(err) { (err) }, complete() { ("Done") } }
3. Practical example, using Redis
3.1 Install Redis
npm install redis @types/redis
3.2 Use
import {RedisClient} from "redis" import {Observable} from "rxjs" // The constructor type of redis is "ClientOpt interface", as long as it is an object that meets its field definitionlet reids = new RedisClient({ host:"localhost", port:6379 }) // Redis operations are asynchronous operations. When using callbacks, it is easy to fall into ruining hell("name", "tom", (err, res)=>{ // Operations that need to be synchronized after set succeeds if(!err) { ("name", (err,res)=> { (res) }) } }) // You can use Promise to encapsulate the above method, but we use rxjs event stream herelet redisObser = new Observable(productor => { // This column has no practical purpose, only for demonstration ("name", "jack", (err, res) => { (res) () }) }) // Consumption code({ next(key) { // Reading or other operations after set (key, (err, res) => { (res) }) }, error(err) { (err) }, complete() { ("Query Finish") } }
This is the article about the simple and detailed explanation of RxJS in TypeScript. For more related content on TypeScript, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!