Results 12 comments of Zhenyu Hou

saga 的用途在这个例子里面没有讲清楚。 ``` javascript function createRequest () { return (dispatch, getState) => { dispatch({ type: 'REQUEST_STUFF' }); someApiCall(function(response) { // some processing dispatch({ type: 'RECEIVE_STUFF' }); }); }; } ```...

saga 的作用最主要还是解决复杂的异步交互情况,特别是竞争状态。参见 [http://stackoverflow.com/questions/34930735/pros-cons-of-using-redux-saga-with-es6-generators-vs-redux-thunk-with-es7-async/34933395](http://stackoverflow.com/questions/34930735/pros-cons-of-using-redux-saga-with-es6-generators-vs-redux-thunk-with-es7-async/34933395) saga 作者自己的回答。不过感觉对我们目前的业务来说 overkill 了。

工程化的思考除了需要过硬的编程能力,更多需要的是对人和工程本身的深刻洞察。大赞!

Hi everyone, I want to say sorry first because I reply this issue so late, but that doesn't mean I ignored it. I have checked the new developer document of...

Ok, I will do it in July. It may take 2 or 3 weeks. But no promise.

@PeteBerry yes, I'm working on it. Thank you for reminding me.

Hi every one, I just finished rewriting of Blade. A new release can be found in the dist folder. It is a "Minimum Viable Product" version and I need people...

@HTKT sorry, the release is broken. I fixed it just now. Download it and reinstall it should work.

@HTKT It is ok in my sketch, please tell me more detail in gitter channel.

> Hi @sskyy , how do you like the previously mentioned solution? Our engineers are currently fully engaged in other development work and, unfortunately, won't be able to implement this...