Skip to content

Commit

Permalink
docs: 新增mobx的文档
Browse files Browse the repository at this point in the history
  • Loading branch information
ykforerlang committed Jul 2, 2019
1 parent 31a1846 commit cdf8292
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* [等等]()

* [支持Redux](./支持Redux.md)
* [支持mobx](./支持mobx.md)
* [自定义组件库扩展](./自定义组件库扩展.md)
* [Alita组件库](./Alita组件库.md)
* [代码检查&Eslint](./代码检查&Eslint.md)
Expand Down
11 changes: 11 additions & 0 deletions docs/支持mobx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## 支持mobx
[mobx](https://github.com/mobxjs/mobx) 是React技术栈除了Redux之外,另一个比较流行的数据管理库。 Alita从1.0.2版本开始支持[mobx](https://github.com/mobxjs/mobx)的使用。

[mobx](https://github.com/mobxjs/mobx)最新的版本是**5.x**,但是**5.x**在实现上使用了[ES6 Proxies](https://kangax.github.io/compat-table/es6/#test-Proxy)。处于对兼容性的考虑,包括RN的兼容性,Alita转化H5的兼容性等等,我们并没有使用最新的**5.x**版本,而是使用了**4.11.0**, 对应的[mobx-react](https://github.com/mobxjs/mobx-react)使用了**5.4.4**版本。 所以在你的React Native项目,请:

```shell
npm install [email protected] [email protected] --save
```



0 comments on commit cdf8292

Please sign in to comment.