Skip to content

Commit

Permalink
-1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
QlQlqiqi committed Sep 10, 2021
1 parent ef9f430 commit 780b4e8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@

#### 设计前想好页面架构、页面间数据通信方式、前后端交互方式和时机,页面设计不能只依靠 absolute。

### 1.3.0:

#### 完全重构数据交互和存储方式

- 以前:
- 数据以本地为主,每一定时间(30s)同步到服务器一次。
- 数据通信时采用最笨拙的方式,即,先删除服务器的全部数据,然后再将新的数据全部加上去。
- 现在:
- 数据以服务器为主,每次数据的更改都会及时同步到服务器。
- 需要 put / delete / post 的数据分别采用不同的方式,只针对该数据进行更改。

### 小结

总的来说,此次项目较为简单,但是还有的地方没有处理好(左侧栏在特定情况下位置会偏移),作为上手的第一个项目较为合适。

0 comments on commit 780b4e8

Please sign in to comment.