https://github.com/onface/store-spec
https://github.com/onface/store-spec
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/onface/store-spec
- Owner: onface
- Created: 2018-11-06T03:21:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T03:24:07.000Z (over 6 years ago)
- Last Synced: 2025-02-17T09:43:10.886Z (3 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# store-spec
## inited 机制
```js
// store
{
sender: {
inited: false,
items: []
}
}
``````js
// 加载列表时
if (!store.sender.inited) {
getSender({
success: function (data) {
store.sender.items = data
}
})
}
``````js
addSender({
// 新增时
success: function (data) {
// 已初始化再添加
if (store.sender.inited) {
store.sender.items.push(data)
}
}
})
```