[Cycle,js] Customizing effects from the main function

Source: Internet
Author: User

How can we show one string on the DOM, and a completely different string on Console log? This lesson shows what we can make our main function return multiple observables, each one targeted at a different type of Effect.

//Logic (functional)functionMain () {return{DOM:Rx.Observable.timer (0, +). Map (i =' timer is ${i} '), Log:Rx.Observable.timer (0, +). Map (i =i)};i}functionDomeffect (text$) {text$.subscribe (text={Const container= Document.queryselector (' #app '); Container.textcontent=text; });}functionConsolelogeffect (msg$) {msg$.subscribe (msg=Console.log (msg));} Const Sinks=Main ();D Omeffect (sinks. DOM); Consolelogeffect (sinks.  LOG); 

[Cycle,js] Customizing effects from the main function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.