Jichao Ouyang

Results 48 comments of Jichao Ouyang

> I fell it more intuitive that once connect function is called, it subscribes to the stream no, all code here is descriptive, you can see `connect` accepted a function,...

I didn't try but probably react-router should work naturally since it's just a HoC, data should be ok just pass to component via props, not intent$ ```js ``` another alternative...

content内容是 `` 还是 `` 正常如果是 Connect,会在componentUnmount的时候解绑stream 如果是 Most,不应该 mount和umount Most,Most一般是作为根 另外可能一种情况是,数据请求是副作用,如果并没有返回成 sink,这种情况react-most也没有办法帮你unsubscribe

只需要把connect的函数写纯就好了,比如你connect上去的函数有没有自己创建一个stream自己消费,没有return出去的这种情况

可以试试 - `env NODE_ENV=debug `,在console里面能打出所有intent和state的history - react浏览器插件看看到底render了几个component - 再不济就debugger断点调试 另外你用的哪个版本的react-most,最好升到最新,因为有一个版本用的most是有unsubscribe的bug的

有空格,是 typo

好的,谢谢。是不是你的fork没更新啊?pull一下我的origin再试试 On Aug 10, 2014 5:01 PM, "Scott" [email protected] wrote: > 第四章基本翻译完成了(Monad那节还剩“Monad 在 JavaScript > 中的应用”),因为我到现在也没有完全理解Functor和Monad,所以第四章的翻译质量可能没有之前那么好。 > > 另外我看到你master的中文部分有添加,我尝试过在en-version分支下git merge master > ,但是因为目前en文件夹都是英文了,中文增补的段落好像没法merge到en-version中。我应该怎么merge中文增补的段落呢? > > 目前我只看到Monad那节有添加——就是还没有翻译的“Monad 在 JavaScript 中的应用”。 >...

我可能有些顺手改了有些没有... — Sent from Mailbox On Sat, Aug 16, 2014 at 1:17 PM, Scott [email protected] wrote: > Monad在Js的应用那一小节,我也翻译好了。 > > ## 我看到你新增了一些内容([链接](https://github.com/scotv/functional-javascript/pull/7)),这些内容的对应英文你在翻译吗? > > Reply to this email directly or...

maybe Array.from is Firefox only thing it does work ``` var iterator = mori.vector(1,2,3)[Symbol.iterator]() iterator.next() // => { done: false, value: 1 } ```