博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[RxJS] Getting Input Text with Map
阅读量:5113 次
发布时间:2019-06-13

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

By default, Inputs will push input events into the stream. This lesson shows you how to use map to convert the input event into the text you actually want.

 

  
JS Bin

 

const input = document.querySelector('#input');const input$ = Observable.fromEvent(input, 'input')  .map(event => event.target.value);input$  .subscribe((x)=> console.log(x));

 

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

你可能感兴趣的文章
【代码笔记】Web-HTML-布局
查看>>
MySql和Oracle数据库区别
查看>>
Nginx配置详解
查看>>
向学,相遇。
查看>>
oracle常用函数
查看>>
显示器变蓝色和图像偏移的解决办法
查看>>
mysql应用实例
查看>>
docker从容器里面拷文件到宿主机或从宿主机拷文件到docker容器里面
查看>>
wineqq中接收文件的查看与移动
查看>>
(12)javascript 面向对象 理解对象
查看>>
个人作业
查看>>
redis的安装
查看>>
MySQ binlog三种模式及设置方法
查看>>
python基础学习-6(正则)
查看>>
【博弈】海盗分赃
查看>>
JAVA中构造函数的参数传递给类中的实例变量
查看>>
已知三角形三个顶点求三角形内心
查看>>
poj 1274 (二分匹配)
查看>>
程序员的自我救赎(前言)
查看>>
Debian Linux 下安装pip3
查看>>