-
[原文地址](https://github.com/lcxfs1991/blog/issues/8)
[本文start kit: steamer-react](https://github.com/SteamerTeam/steamer-react/tree/react)
PS: 要看效果得将一个QQ群组转换成家校群,可到此网址进行转换(手Q/PC都可以访问):
[http://qun.qq.c…
-
Would it be possible, similar to Immutable.JS (or Java..), have support for keys based on structural equality (ie. hashCode, equals)?
-
Will there be a branch for redux-persist v5? Could this be accomplished by simply updating the dependency?
-
一直以来,Virtual DOM 都是 React 的一大特色,Facebook 宣称 React 借其能很大程度提高 SPA 的性能表现。但这就意味着 React 的性能一定优秀吗,可能并不是,在某些情况下,React 慢的令人抓狂,这时你可能就需要用一些正确的手段来优化它了。
React 的更新机制
---
我们不妨先简单了解下 React 的更新机制,如果能降低它的更新频率,自…
-
In each section of the docs, make clear what the return type is
-
**Object.assign 是否可替代 Immutable?**
结构共享指的是,根节点的引用改变,但对没修改的节点,引用依然指向旧节点。所以Object.assign 也能实现结构共享
见如下代码:
```
const objA = { a: 1, b: 2, c: 3 }
const objB = Object.assign({}, objA, { c: 4 })
ob…
-
Hi, thanks for redux-immutable.
I am trying to mix immutable reducer and classic reducer.
I have tried to tweak the `combineReducer.js` like this :
```javascript
if (inputState.withMuta…
kopax updated
2 years ago
-
## Table of Contents
- What is immutable.js, What problem does it solve?
- feature and API
- What improvement can be bring by import immutable.js into a redux+react project?
- How to inte…
-
After the state gets serialized into plain JavaScript objects on the server-side, and deserialized on the client-side, the action-reducer gets a non-default state of type Object, not Immutable Map it …
-
I think we might be able to get rid of the reducers. Right now Redux requires three main pieces to get it working, the subscriber in the component, the action creator function, and the reducer. Once y…