Skip to content

Commit

Permalink
docs(main): fix main site docs
Browse files Browse the repository at this point in the history
  • Loading branch information
janryWang committed Apr 10, 2021
1 parent 9c4b67f commit cd6a347
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

刚好,github 社区为这样的 MVVM 模型抽象出了一个叫 [Mobx](https://github.com/mobxjs/mobx) 的状态管理解决方案,Mobx 最核心的能力就是它的依赖追踪机制和响应式模型的抽象能力。

所以,借助 Mobx,完全可以解决表单字段输入过程中的 O(n)问题,而且是可以很优雅的解决,但是 Formily2.x 在实现的过程中发现 Mobx 还是存在一些不兼容 Formily 核心思想的问题,最终,只能重新造了一个轮子,延续 Mobx 的核心思想的 [@formily/reactive](https://rective.formilyjs.org)
所以,借助 Mobx,完全可以解决表单字段输入过程中的 O(n)问题,而且是可以很优雅的解决,但是 Formily2.x 在实现的过程中发现 Mobx 还是存在一些不兼容 Formily 核心思想的问题,最终,只能重新造了一个轮子,延续 Mobx 的核心思想的 [@formily/reactive](https://reactive.formilyjs.org)

这里提一下 [react-hook-form](https://github.com/react-hook-form/react-hook-form) ,非常流行,号称业界性能第一的表单方案,我们看看它最简单的案例:

Expand Down
5 changes: 5 additions & 0 deletions docs/guide/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@
- V1: 代表虚拟字段
- V2: 改名,统一使用[VoidField](https://core.formilyjs.org/api/models/void-field)

**unmount行为**

- V1: 字段unmount,字段值默认会被删除
- V2: 移除,这个默认行为太隐晦,如果要删值,可以直接修改value,同时自动删值的行为只有字段display为none时才会自动删值

## 桥接层差异

> 这里主要指@formily/react@formily/react-schema-renderer 的差异
Expand Down

0 comments on commit cd6a347

Please sign in to comment.