-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
文档中的一个例子运行结果与给的结果不同(不知道这里能不能提问题) #81
Comments
不是你的问题,是文档本身有问题,而且具有一定误导性。 换句话说,input 中每次只能保留 产生原因是其实每次字符串都和前面的没有重复,你可以再试试第2再尝试输入hello world 就不会再打印值了,因为这些字母组合之前都已经出现过。
|
另外可以参考下 |
官方仓库也有人提出了同样的问题: #3069 |
哦 是这样,可以认为是和历史记录比对吧,而不是本身的值。 |
应该是每次发出的值和历史发出的值对比 不同就可以通过 |
这样的示例会不会好一点? |
|
event 对象下的 data 就是每次输入的值
|
Cool ! 这个属性之前没用过,那这样肯定是好用的,后续我会把这段代码更新到文档之中。感谢分享 |
RxJS version:
6.0.0-alpha.0
Code to reproduce:
Expected behavior: (当输入
hello world
之后的输出)"helo wrd"
Actual behavior:
"hello world"
Additional information:
感觉这个
.distinct()
并没有起到什么作用,还有接下来的那个例子也是如此得到的结构还是
hello world
chrome浏览器,我是在工作台直接测试的
是我使用的姿势不对吗?
The text was updated successfully, but these errors were encountered: