cache-store:数据缓存,支持 React 组件之间数据共享

时间:2024-06-13 23:09:20
【文件属性】:

文件名称:cache-store:数据缓存,支持 React 组件之间数据共享

文件大小:7KB

文件格式:ZIP

更新时间:2024-06-13 23:09:20

JavaScript

cache-store 数据缓存,支持 React 组件之间数据共享。 USAGE var store = require('cache-store'); class Foo extends React.Component { constructor(props) { super(props); store.set('name', 'Foo'); // 触发 store 中的 name 值更新 } } class Bar extends React.Component { constructor(props) { super(props); this.state = {barName: ''}; // 每次 store 中的 name 改变了, Bar 中的 barName 也会跟着改变 store.map('name', 'ba


【文件预览】:
cache-store-master
----.jshintrc(610B)
----test()
--------test-store.js(9KB)
----README.md(1KB)
----.jscsrc(2KB)
----.gitignore(66B)
----index.js(4KB)
----karma.conf.js(2KB)
----package.json(1KB)

网友评论